-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
125 lines (125 loc) · 3.27 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
{
"private": true,
"name": "toulouse-js",
"homepage": "http://francejs.org/ToulouseJS/",
"twitter": "ToulouseJS",
"repository": "https://github.com/francejs/ToulouseJS.git",
"scripts": {
"lint:js": "eslint --ignore-path .gitignore --fix .",
"lint:css": "stylelint \"src/**/*.css\"",
"lint": "npm-run-all --parallel lint:*",
"start": "phenomic start",
"build": "phenomic build",
"pretest": "npm run lint",
"test": "npm run build",
"predeploy": "npm run build",
"deploy": "./scripts/deploy.sh"
},
"phenomic": {
"CNAME": true
},
"#babel": "webpack-(development|production) are useful for webpack 2, otherwise use development|production",
"babel": {
"env": {
"development": {
"presets": [
"babel-preset-latest",
"babel-preset-stage-1",
"babel-preset-react"
],
"plugins": [
"react-hot-loader/babel"
]
},
"production": {
"presets": [
"babel-preset-react-optimize",
"babel-preset-latest",
"babel-preset-stage-1",
"babel-preset-react"
]
},
"webpack-development": {
"presets": [
[
"babel-preset-latest",
{
"es2015": {
"modules": false
}
}
],
"babel-preset-stage-1",
"babel-preset-react"
],
"plugins": [
"react-hot-loader/babel"
]
},
"webpack-production": {
"presets": [
"babel-preset-react-optimize",
[
"babel-preset-latest",
{
"es2015": {
"modules": false
}
}
],
"babel-preset-stage-1",
"babel-preset-react"
]
}
}
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"eslint-config-i-am-meticulous/react"
]
},
"stylelint": {
"extends": "./node_modules/phenomic/lib/stylelint-config-recommended/index.js"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-latest": "^6.14.0",
"babel-preset-react": "^6.3.13",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-1": "^6.13.0",
"css-loader": "^0.25.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": "^1.0.1",
"file-loader": "^0.9.0",
"history": "^2.0.0",
"invariant": "^2.1.1",
"json-loader": "^0.5.2",
"npm-run-all": "^1.7.0",
"phenomic": "^0.19.5",
"postcss-browser-reporter": "^0.4.0",
"postcss-cssnext": "^2.4.0",
"postcss-loader": "^0.13.0",
"postcss-reporter": "^1.3.0",
"raw-loader": "^0.5.1",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-helmet": "^3.0.0",
"react-hot-loader": "^3.0.0-beta",
"react-redux": "^4.0.0",
"react-router": "^2.3.0",
"react-svg-inline": "^1.1.0",
"react-topbar-progress-indicator": "^1.0.0",
"redux": "^3.0.0",
"style-loader": "^0.13.0",
"stylelint": "^7.2.0",
"webpack": "^1.1.14",
"whatwg-fetch": "^0.11.0"
}
}