-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "scholar-badge",
"version": "0.1.0",
"private": true,
"dependencies": {
"history": "^4.9.0",
"node-sass": "^4.12.0",
"query-string": "^6.8.1",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-scripts": "3.0.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"universal-router": "^8.2.0",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"build:css": "postcss src/styles/main.css -o src/index.css",
"watch:css": "postcss src/styles/main.css -o src/index.css -w",
"start": "npm-run-all -p watch:css start-js",
"start-js": "react-scripts start",
"build-js": "react-scripts build",
"build": "npm-run-all build:css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"since 2010"
],
"devDependencies": {
"autoprefixer": "^9.6.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.2",
"postcss-nested": "^4.1.2"
}
}