-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.53 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
51
52
53
{
"name": "node-express-orm-typescript-template",
"version": "1.0.0",
"description": "Simplified ts api, app template",
"main": "./build/index.js",
"scripts": {
"tests": "echo 'tests not implemented'",
"build": "tsc --skipLibCheck",
"start": "tsc --skipLibCheck && node ./build/app.js",
"ts:watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norkator/Node-Express-Orm-TypeScript-Template.git"
},
"author": "Norkator",
"license": "MIT",
"bugs": {
"url": "https://github.com/norkator/Node-Express-Orm-TypeScript-Template/issues"
},
"homepage": "https://github.com/norkator/Node-Express-Orm-TypeScript-Template#readme",
"dependencies": {
"bcryptjs": "2.4.3",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"helmet": "3.23.0",
"jsonwebtoken": "8.5.1",
"node-schedule": "1.3.2",
"pg": "8.2.1",
"pgtools": "0.3.0",
"sequelize": "5.21.13",
"typescript": "3.9.5"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/compression": "1.7.0",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.6",
"@types/debug": "4.1.5",
"@types/express": "4.17.6",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "8.5.0",
"@types/node-schedule": "1.3.0",
"@types/sequelize": "4.28.9",
"@types/swagger-jsdoc": "3.0.2",
"@types/swagger-ui-express": "4.1.2",
"swagger-jsdoc": "4.0.0",
"swagger-ui-express": "4.1.4"
}
}