-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 938 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
30
31
32
{
"name": "API-jardins-connectes",
"version": "1.0.0",
"description": "API visant à fournir les données du site Les Jardins connectés // API which supply data for the webapp : 'Les Jardins Connectés'",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"reload": "npm i && cd FRONT/ && yarn && yarn build && cd ..",
"start": "node index.js",
"db": "createdb jardins && sqitch deploy",
"seed": "node app/services/seeding",
"devResetDB": "dropdb jardins && createdb jardins && sqitch deploy && npm run seed"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.2.0",
"joi": "^17.2.1",
"multer": "^1.4.2",
"pg": "^8.4.1",
"redis": "^3.0.2",
"sanitize-html": "^2.1.1"
},
"devDependencies": {
"dotenv": "^8.2.0"
}
}