forked from jkk/shinkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
{
"name": "shinkgs",
"version": "0.4.0-dev",
"devDependencies": {
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "0.80.0",
"node-sass": "4.9.3",
"prettier": "^1.14.2",
"react-scripts": "2.0.0-next.a671462c",
"serve": "^10.0.0"
},
"dependencies": {
"autolinker.js": "0.7.0",
"chartist": "^0.11.0",
"date-fns": "^1.28.5",
"fastclick": "^1.0.6",
"font-awesome": "4.7.0",
"history": "4.7.2",
"idb-keyval": "3.1.0",
"locale-string": "1.0.0",
"lodash.get": "^4.4.2",
"rc-slider": "^8.6.2",
"react": "^16.5.0",
"react-chartist": "^0.13.0",
"react-dom": "^16.5.0",
"prop-types": "^15.6.2",
"uuid": "3.3.2",
"dom-helpers": "^3.3.1",
"prop-types-extra": "^1.1.0"
},
"scripts": {
"start": "yarn run build-sass && yarn run start-sass & HTTPS=true react-scripts start",
"build": "yarn run build-sass && react-scripts build",
"start-sass": "node-sass --include-path='node_modules' --watch src/css -o src",
"build-sass": "node-sass --include-path='node_modules' src/css/index.scss src/index.css",
"eject": "react-scripts eject",
"test": "react-scripts test --env=jsdom",
"lint": "./node_modules/eslint/bin/eslint.js src/",
"flow": "flow check",
"now-deploy": "yarn build && cp server/* build && now",
"now-start": "serve ./build --single"
},
"eslintConfig": {
"extends": "react-app"
},
"proxy": "https://www.gokgs.com",
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}