-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 989 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
33
{
"name": "recipe-recommender",
"version": "1.0.0",
"description": "",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"develop": "concurrently \"cd backend && npm run watch\" \"cd recipe-recommender && npm start\"",
"install": "cd backend && npm i && cd ../recipe-recommender && npm i",
"build": "cd recipe-recommender && npm run build",
"test": "cd backend && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gulpinhenry/recipe-recommender.git"
},
"keywords": [],
"author": "Henry Kam",
"license": "MIT",
"bugs": {
"url": "https://github.com/gulpinhenry/recipe-recommender/issues"
},
"devDependencies": {
"chai": "^5.1.0",
"concurrently": "^5.1.0",
"mocha": "^10.4.0",
"supertest": "^7.0.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"i": "^0.3.7"
}
}