-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ts-api-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "NODE_ENV=poduction node dist/bin/www",
"build": "ttsc",
"dev": "DEBUG=ts-api-starter:* node --inspect=5858 -r ts-node/register -r tsconfig-paths/register ./src/bin/www.ts",
"dev:watch": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myungjaeyu/ts-api-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/myungjaeyu/ts-api-starter/issues"
},
"homepage": "https://github.com/myungjaeyu/ts-api-starter#readme",
"nodemonConfig": {
"ignore": [
"node_modules"
],
"watch": [
"./src"
],
"exec": "npm run dev",
"ext": "ts"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.14",
"@types/jest": "^24.0.18",
"@types/morgan": "^1.7.37",
"@types/node": "^12.7.2",
"@types/passport": "^1.0.1",
"@types/passport-local": "^1.0.33",
"@types/validator": "^10.11.3",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"ttypescript": "^1.5.7",
"typescript": "^3.5.3",
"typescript-transform-paths": "^1.1.10"
},
"dependencies": {
"debug": "^4.1.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.12.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.16.0",
"sequelize-typescript": "^1.0.0"
}
}