-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 924 Bytes
/
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
{
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"client": "npm start --prefix client",
"server": "nodemon index.js --prefix server/src",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client-build": "npm run build --prefix client",
"server-build": "npm run build --prefix server",
"build:prod": "npm run client-build && npm run server-build",
"start:prod": "npm run build:prod && concurrently \"npm run server\" \"npm run client\""
},
"dependencies": {
"concurrently": "^8.2.2",
"react-router-dom": "^6.11.1",
"request-ip": "^3.3.0"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@orangeopensource/hurl": "^4.3.2",
"eslint": "^9.2.0",
"globals": "^15.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4"
},
"version": "1.0.1"
}