-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1003 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "w09-restful-api",
"version": "1.0.0",
"description": "Week 9 Coursework Submission - RESTful APIs",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PCM-M46-Coursework/W09-RESTful-API.git"
},
"keywords": [
"codenation",
"coursework",
"REST",
"API",
"javascript",
"sequelize",
"express"
],
"author": "Peter C. Matthews",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/PCM-M46-Coursework/W09-RESTful-API/issues"
},
"homepage": "https://github.com/PCM-M46-Coursework/W09-RESTful-API#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.2.3",
"sequelize": "^6.31.0"
},
"devDependencies": {
"axios": "^1.3.6",
"jest": "^29.5.0",
"sequelize-mock": "^0.10.2",
"sequelize-test-helpers": "^1.4.3",
"supertest": "^6.3.3"
}
}