-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
102 lines (102 loc) · 2.79 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "node-typescript-starter",
"version": "0.1.2",
"description": "A starting point for Node.js express apps with TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/scopsy/node-typescript-starter"
},
"author": "Dima Grossman",
"license": "MIT",
"scripts": {
"start": "nodemon",
"prestart:prod": "npm run build",
"start:prod": "NODE_ENV=production node dist/server.js",
"build": "tsc && npm run tslint",
"test": "jest --forceExit",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"path": "tspath"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/src/**/*.spec.(ts|js)",
"**/src/**/*.e2e.(ts|js)"
],
"testEnvironment": "node"
},
"dependencies": {
"ajv": "^6.0.1",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.2",
"class-transformer": "^0.1.8",
"class-validator": "^0.7.3",
"compression": "^1.7.1",
"dotenv": "^2.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"lusca": "^1.5.2",
"moment": "^2.20.1",
"mongoose": "^4.13.7",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.0",
"passport-local": "^1.0.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"swagger-ui-express": "^2.0.14",
"ts-express-decorators": "^3.7.0",
"ts-log-debug": "^4.0.2",
"tspath": "^1.2.10",
"typegoose": "3.4.7",
"typescript-param-validator": "^1.1.0"
},
"devDependencies": {
"@types/async": "^2.0.40",
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "^1.16.2",
"@types/compression": "0.0.33",
"@types/connect-mongo": "0.0.34",
"@types/dotenv": "^2.0.20",
"@types/express": "^4.0.35",
"@types/express-session": "^1.15.5",
"@types/jest": "^21.1.5",
"@types/lodash": "^4.14.80",
"@types/mongodb": "^2.2.18",
"@types/mongoose": "^4.7.9",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/nodemailer": "^1.3.32",
"@types/passport": "^0.3.5",
"@types/passport-facebook-token": "^0.4.33",
"@types/passport-local": "^1.0.32",
"@types/reflect-metadata": "^0.1.0",
"@types/request": "^2.0.7",
"@types/request-promise": "^4.1.39",
"@types/supertest": "^2.0.0",
"eslint": "^4.14.0",
"jest": "^21.2.1",
"node-sass": "^4.5.2",
"nodemon": "^1.12.1",
"shelljs": "^0.7.7",
"supertest": "^2.0.1",
"ts-jest": "^21.1.4",
"ts-node": "^3.3.0",
"tsconfig-paths": "^3.1.1",
"tslint": "^5.8.0",
"typescript": "^2.4.0"
}
}