-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 KB
/
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
46
47
48
49
50
{
"name": "course-api",
"version": "1.0.0",
"description": "course restful apis",
"main": "src/server.js",
"scripts": {
"start": "pm2-runtime start ./config/ecosystem.config.js",
"dev": "nodemon src/server.js",
"stg": "NODE_ENV=stg nodemon src/server.js",
"debug": "nodemon --inspect src/server.js",
"lint": "eslint src",
"test": "jest",
"test-watch": "jest --verbose --watchAll --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abcde090/course-api.git"
},
"keywords": [
"nodejs"
],
"author": "Dan Wang",
"dependencies": {
"@hapi/joi": "^15.0.3",
"bcrypt": "^3.0.6",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.11",
"morgan": "^1.9.1",
"pm2": "^3.5.1",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.6.0",
"swagger-ui-express": "^4.0.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"jest": "^24.1.0",
"nodemon": "^1.18.9",
"supertest": "^3.4.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/abcde090/course-api/issues"
},
"homepage": "https://github.com/abcde090/course-api#readme"
}