This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 248
/
package.json
135 lines (135 loc) · 3.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"private": true,
"name": "Phenomic",
"homepage": "https://phenomic.io/",
"googleAnalyticsUA": "UA-76349880-1",
"twitter": "MoOx",
"github": "MoOx",
"repository": "https://github.com/MoOx/phenomic.git",
"phenomic": {
"CNAME": true,
"offline": true,
"webpackHardCache": true
},
"scripts": {
"showcase-screenshots": "babel-node scripts/showcase-screenshots.js",
"lint:js": "eslint --ignore-path .gitignore --fix .",
"lint:css": "stylelint \"src/**/*.css\"",
"lint": "npm-run-all --parallel lint:*",
"rebuild-phenomic": "cd ../ && npm -s run transpile",
"start": "phenomic start",
"restart": "npm -s run rebuild-phenomic && phenomic start",
"build": "phenomic build",
"rebuild": "npm -s run rebuild-phenomic && phenomic build",
"pretest": "npm run lint",
"test": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-1": "^6.13.0",
"classnames": "^2.2.3",
"color": "^0.11.1",
"css-loader": "^0.23.0",
"eslint": "^2.0.0",
"eslint-config-i-am-meticulous": "^4.1.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.3.0",
"extract-text-webpack-plugin": "^2.0.0-beta",
"file-loader": "^0.8.1",
"history": "^2.0.0",
"invariant": "^2.1.1",
"json-loader": "^0.5.2",
"mkdirp": "^0.5.1",
"nightmare": "^2.6.1",
"npm-run-all": "^1.7.0",
"png-jpg": "0.0.2",
"postcss-browser-reporter": "^0.4.0",
"postcss-cssnext": "^2.4.0",
"postcss-loader": "^0.7.0",
"postcss-reporter": "^1.3.0",
"raw-loader": "^0.5.1",
"react": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1",
"react-google-analytics": "^0.2.0",
"react-helmet": "^3.0.0",
"react-redux": "^4.4.1",
"react-router": "^2.3.0",
"react-svg-inline": "^1.1.0",
"react-topbar-progress-indicator": "^1.0.0",
"redux": "^3.0.0",
"react-hot-loader": "^3.0.0-beta",
"style-loader": "^0.12.3",
"stylelint": "^6.8.0",
"stylelint-config-standard": "^10.0.0",
"webpack": "^2.1.0-beta.21",
"whatwg-fetch": "^0.11.0"
},
"babel": {
"env": {
"development": {
"presets": [
"babel-preset-es2015",
"babel-preset-stage-1",
"babel-preset-react"
]
},
"production": {
"presets": [
"babel-preset-es2015",
"babel-preset-stage-1",
"babel-preset-react"
]
},
"webpack-development": {
"presets": [
[
"babel-preset-es2015",
{
"modules": false
}
],
"babel-preset-stage-1",
"babel-preset-react"
],
"plugins": [
"react-hot-loader/babel"
]
},
"webpack-production": {
"presets": [
"babel-preset-react-optimize",
[
"babel-preset-es2015",
{
"modules": false
}
],
"babel-preset-stage-1",
"babel-preset-react"
]
}
}
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"eslint-config-i-am-meticulous/react"
],
"rules": {
"react/prefer-stateless-function": 0
}
},
"eslintConfigRuleReact/prefer-stateless-function": "https://github.com/MoOx/phenomic/issues/46",
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"block-no-empty": null
}
}
}