-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "lesson-one",
"version": "1.0.0",
"description": "a firstnode lesson",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"build-ts": "tsc",
"start": "npm run serve",
"serve": "node dist/server.js",
"watch-node": "nodemon --inspect dist/server.js",
"watch-ts": "tsc -w",
"serve-dev": "concurrently kill others \"tsc -w\" \"nodemon --inspect dist/server.js\""
},
"author": "simonbassey",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/config": "0.0.34",
"@types/express": "^4.17.1",
"@types/jsonwebtoken": "^8.3.4",
"@types/mongodb": "^3.3.3",
"@types/mongoose": "^5.5.18",
"@types/node": "^12.7.8",
"@types/swagger-ui-express": "^3.0.1",
"@types/winston": "^2.4.4",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"config": "^3.2.3",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.1",
"mongoose": "^5.7.3",
"morgan": "^1.9.1",
"swagger-ui-express": "^4.1.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/morgan": "^1.7.37",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.2",
"nodemon": "^1.19.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": 4000
}
}
}