-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
62
{
"name": "node-docker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && node build/server.js",
"dev": "nodemon",
"build": "tsc",
"test": "tsc && jest",
"test:watch": "jest --watch"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.11",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^11.12.0",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/passport-local": "^1.0.33",
"@types/uuid": "^3.4.4",
"jest": "^24.5.0",
"nodemon": "^1.18.10",
"source-map-support": "^0.5.11",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
},
"dependencies": {
"bcrypt": "^3.0.5",
"body-parser": "^1.18.3",
"class-validator": "^0.9.1",
"cors": "^2.8.5",
"dot-env": "^0.0.1",
"express": "^4.16.4",
"glob": "^7.1.3",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^7.9.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.16",
"uuid": "^3.3.2"
}
}