forked from learn-co-curriculum/react-components-as-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "react-components-as-routes",
"version": "0.1.0",
"private": true,
"devDependencies": {
"react-scripts": "^3.3.0"
},
"dependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^8.0.6",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"cuid": "^1.3.8",
"jquery": "^3.5.0",
"react": "^16.2.0",
"react-dom": "^16.12.0",
"react-router-dom": "^4.2.2",
"superagent": "^5.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"dev:hot": "webpack-dev-server --hot --inline --progress --colors --watch --display-error-details --display-cached --content-base ./",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}