forked from kriasoft/react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 853 Bytes
/
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
{
"private": true,
"engines": {
"node": ">=6",
"npm": ">=3.8"
},
"dependencies": {
"history": "^3.0.0",
"react": "^15.3.0",
"react-app": "^1.1.2",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"react-app-tools": "^1.1.2"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-1"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js"] }]
}
},
"scripts": {
"lint": "eslint actions components core routes test utils main.js",
"build": "react-app build",
"start": "react-app run"
}
}