-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "docker-node-api",
"repository": {
"type": "git",
"url": "https://github.com/minhazfm/docker-node-api.git"
},
"version": "1.0.0",
"description": "A sample of a Node API running in a docker container",
"main": "dist/server.js",
"scripts": {
"build": "gulp scripts",
"serve": "node dist/server.js",
"start": "tsc -p . && node dist/server.js",
"watch": "nodemon dist/server.js"
},
"author": "Minhaz F Mohammad",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-validator": "^5.3.0",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"jsonwebtoken": "^8.3.0",
"semver": "^5.5.1",
"typescript": "^3.0.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.24",
"@types/body-parser": "^1.17.0",
"@types/cookie-parser": "^1.4.1",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/express-validator": "^3.0.0",
"@types/gulp": "^4.0.5",
"@types/gulp-typescript": "^2.13.0",
"@types/jsonwebtoken": "^7.2.8",
"@types/node": "^10.9.4",
"@types/semver": "^5.5.0",
"@types/typescript": "^2.0.0",
"@types/uuid": "^3.4.3"
}
}