-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 KB
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
38
39
40
{
"name": "recipe-app-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run setupProject & npm run startServer",
"setupProject": "node setupDatabase.js",
"dev": "nodemon server/server.js",
"startServer": "node server/server.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareEngineeringGroup3-3/recipe-app-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SoftwareEngineeringGroup3-3/recipe-app-backend/issues"
},
"homepage": "https://github.com/SoftwareEngineeringGroup3-3/recipe-app-backend#readme",
"dependencies": {
"@faker-js/faker": "^6.0.0",
"bcrypt": "^5.0.1",
"better-sqlite3": "^7.4.5",
"chai": "^4.3.6",
"cheerio": "^1.0.0-rc.10",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express.js": "^1.0.0",
"js-sha256": "^0.9.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
},
"devDependencies": {
"jest": "^27.5.1"
}
}