-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.7 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
{
"name": "creativity-tool",
"version": "0.1.0",
"private": true,
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-react": "react-scripts start",
"build-react": "react-scripts build",
"dev": "npm run watch-css & npm run start-react",
"build": "npm run build-css && npm run build-react",
"deploy": "npm run build && firebase deploy"
},
"dependencies": {
"date-fns": "^1.29.0",
"firebase": "^4.12.1",
"history": "^4.7.2",
"lodash": "^4.17.10",
"node-sass-chokidar": "^1.2.2",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-bem-helper": "^1.4.1",
"react-dom": "^16.3.1",
"react-helmet": "^5.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"standard": "^11.0.1",
"standard-loader": "^6.0.1"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"standard": {
"ignore": [
"public"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"standard",
"standard-react"
],
"rules": {
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": 0
}
}
}