forked from se7en-illa/wizarding-schools-network
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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": "wizarding_schools_network",
"version": "1.0.0",
"description": "TTP Summer 2023 Final Project #1",
"main": "index.js",
"scripts": {
"seed": "node seed.js",
"start": "npm run build-watch & npm run start-server ",
"build-watch": "webpack -w",
"start-server": "nodemon --watch server -e js,html server/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.2",
"chalk": "^2.4.1",
"cors": "^2.8.5",
"express": "^4.18.1",
"nodemon": "^2.0.16",
"pg": "^8.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "^v8.0.1",
"react-router-dom": "^6.3.0",
"sequelize": "^6.20.0",
"volleyball": "^1.5.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"@babel/preset-stage-2": "^7.8.3",
"babel-loader": "8.2.5",
"webpack": "^5.72.0",
"webpack-dev-server": "^4.7.3"
}
}