-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.42 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
{
"name": "githubAction",
"version": "0.1.0",
"private": true,
"homepage": "https://xuhaowang.github.io/githubAction",
"dependencies": {
"bootstrap": "3.3.7",
"chartist": "0.10.1",
"node-sass": "4.12.0",
"react-bootstrap": "0.32.4",
"react-chartist": "0.13.3",
"react-google-maps": "9.4.5",
"react-notification-system": "0.2.17",
"react-toggle": "4.0.2",
"antd": "^3.1.3",
"axios": "0.16.1",
"core-js": "^2.5.1",
"github-markdown-css": "^2.10.0",
"immutable": "3.8.1",
"lodash": "^4.17.4",
"markdown-navbar": "^1.0.5",
"moment": "^2.20.1",
"normalize.css": "^7.0.0",
"prismjs": "^1.10.0",
"prop-types": "15.5.8",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-html-parser": "^2.0.2",
"react-loadable": "^5.3.1",
"react-markdown": "^3.1.4",
"react-redux": "5.0.4",
"react-router": "4.1.1",
"react-router-dom": "4.1.1",
"react-router-redux": "next",
"react-scripts": "2.1.1",
"redux": "3.6.0",
"redux-thunk": "2.2.0"
},
"devDependencies": {
"@types/googlemaps": "3.30.19",
"@types/markerclustererplus": "2.1.33",
"@types/react": "16.8.13",
"typescript": "3.4.3",
"inquirer": "^5.0.1",
"fs-extra": "^5.0.0",
"react-app-rewired": "^1.6.2",
"gh-pages": "^1.1.0"
},
"scripts": {
"compile": "node compile.js",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"compile-sass": "node-sass src/assets/sass/light-bootstrap-dashboard-react.scss src/assets/css/light-bootstrap-dashboard-react.css",
"minify-sass": "node-sass src/assets/sass/light-bootstrap-dashboard-react.scss src/assets/css/light-bootstrap-dashboard-react.min.css --output-style compressed",
"map-sass": "node-sass src/assets/sass/light-bootstrap-dashboard-react.scss src/assets/css/light-bootstrap-dashboard-react.css --source-map true",
"predeploy": "npm run build",
"deploy": "gh-pages -b gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}