-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (41 loc) · 1017 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
{
"name": "course-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "knex migrate:latest && node -r esm index.js",
"dev": "nodemon -r esm index.js",
"test": "knex migrate:latest && mocha -r esm --exit"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/deepbhatt/course-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/deepbhatt/course-project/issues"
},
"homepage": "https://gitlab.com/deepbhatt/course-project#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.15",
"mocha": "^8.2.1",
"mysql2": "^2.2.5",
"should": "^13.2.3",
"should-http": "^0.1.1",
"supertest": "^6.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}