-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 771 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 771 Bytes
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
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "forever ./server.js",
"start-web": "parcel ./src/react/app.jsx --hmr-port 9998",
"start-server": "nodemon ./src/node/server.js",
"build": "parcel build --target frontend"
},
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.1.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"js-cookie": "^3.0.1",
"nodemon": "^2.0.16",
"parcel": "^2.5.0",
"pg": "^8.7.3",
"react-dom": "^18.1.0",
"react-icons": "^4.3.1",
"react-router-dom": "^6.3.0",
"react-select": "^5.3.2",
"uuid": "^8.3.2"
}
}