-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "ephi",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.21.1",
"babel-preset-es2015": "^6.24.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.18.2",
"braces": "^3.0.2",
"ejs": "^2.6.1",
"express": "^4.16.2",
"mongoose": "^5.12.0",
"nodemon": "^1.12.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.1.2",
"react-router-dom": "^4.2.2",
"react-scripts": "^4.0.3",
"styled-components": "^5.2.1",
"whatwg-fetch": "^3.6.2"
},
"scripts": {
"webpack": "webpack",
"start": "npm run webpack && nodemon --exec babel-node -- bin/www",
"clean": "rimraf public/bundle.js"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.13",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"file-loader": "^6.1.1",
"node-sass": "^5.0.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.1"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}