-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "gestchauffagiste",
"version": "1.0.0",
"description": "Gestion Chauffagiste",
"engines": {
"node": "16.x"
},
"scripts": {
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"server": "cd server && nodemon index.js",
"develop": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix client\"",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix client\""
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"dependencies": {
"concurrently": "^7.0.0",
"express": "^4.16.4",
"nodemon": "^2.0.15",
"socket.io": "^4.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Cchumi/GestChauffagiste.git"
},
"keywords": [
"node",
"heroku",
"create-react-app",
"react"
],
"license": "MIT"
}