-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "MVP",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node server/index.js",
"build": "webpack --mode=production",
"dev:react": "webpack --mode=development -w",
"dev:server": "nodemon server/index.js"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.20.2",
"axios": "^0.27.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"moment": "^2.29.3",
"mongoose": "^6.2.8",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.0.0",
"passport-spotify": "^2.0.0",
"rc-virtual-list": "^3.4.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-fast-marquee": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.4",
"css-loader": "^6.7.1",
"style-loader": "^3.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}