-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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
{
"name": "dormit",
"version": "0.1.0",
"main": "server/server.js",
"private": true,
"dependencies": {
"babel": "^6.23.0",
"babel-polyfill": "^6.26.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"crypto": "^1.0.1",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"mongoose": "^6.1.5",
"node": "^16.x",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15",
"react": "^16.x",
"react-color": "^2.19.3",
"react-dom": "^16.x",
"react-hot-loader": "^4.13.0",
"react-icons": "^4.3.1",
"react-multivalue-text-input": "^1.0.0",
"react-quill": "^1.3.5",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"stream": "^0.0.2",
"url-loader": "^4.1.1"
},
"scripts": {
"hotloader": "webpack serve --config ./webpack.config.js --mode development --port 5000",
"start": "nodemon",
"build": "webpack",
"test": "react-scripts test",
"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"
]
},
"devDependencies": {
"webpack-cli": "^4.9.1"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}