-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
125 lines (125 loc) · 3.88 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "theater-hub-api",
"version": "0.1.0",
"author": "Code4Romania <[email protected]>",
"license": "MPL-2.0",
"scripts": {
"start": "npm run build && npm run watch",
"start-aws": "node dist/server.js",
"dev": "SET NODE_ENV=development && npm run start",
"prod": "SET NODE_ENV=production && npm run start",
"build": "npm run build-ts && npm run tslint && npm run copy-static-assets",
"serve": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"test": "jest --forceExit",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"copy-static-assets": "node copyStaticAssets.js",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"generate-migration": "typeorm migration:generate -n %NAME% && npm run build-ts",
"create-migration": "typeorm migration:create -n %NAME% && npm run build-ts",
"run-migration": "typeorm migration:run"
},
"jest": {
"globals": {
"__TS_CONFIG__": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"dependencies": {
"@types/passport-google-oauth2": "^0.1.2",
"@types/validator": "^9.4.3",
"async": "^2.1.2",
"aws-sdk": "^2.558.0",
"axios": "^0.18.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.15.2",
"chalk": "^2.3.0",
"compression": "^1.6.2",
"cryptiles": "^4.1.3",
"dotenv": "^2.0.0",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-flash": "^0.0.2",
"express-session": "^1.14.2",
"express-validator": "^5.3.0",
"fbgraph": "^1.3.0",
"forwarded": "^0.1.2",
"fresh": "^0.5.2",
"handlebars": "^4.3.0",
"hoek": "^6.1.2",
"html-pdf": "^2.2.0",
"https": "^1.0.0",
"inversify": "^4.5.2",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.19",
"lusca": "^1.4.1",
"mailchimp-api-v3": "^1.13.1",
"merge": "^1.2.1",
"mime": "^2.4.0",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"nodemailer": "^2.7.2",
"passport": "0.3.2",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-google-oauth2": "^0.1.6",
"passport-local": "^1.0.0",
"pg": "^6.4.2",
"pg-hstore": "^2.3.2",
"phantomjs-prebuilt": "^2.1.16",
"pug": "^2.0.3",
"reflect-metadata": "^0.1.10",
"request": "^2.78.0",
"sshpk": "^1.15.2",
"superagent": "^4.0.0",
"tough-cookie": "^2.5.0",
"typeorm": "^0.2.9",
"uuid": "^3.1.0",
"validator": "^10.9.0"
},
"devDependencies": {
"@types/async": "^2.0.40",
"@types/body-parser": "^1.16.2",
"@types/compression": "0.0.33",
"@types/dotenv": "^2.0.20",
"@types/errorhandler": "0.0.30",
"@types/express": "^4.0.35",
"@types/express-session": "0.0.32",
"@types/express-validator": "^3.0.0",
"@types/jest": "^19.2.2",
"@types/jquery": "^2.0.41",
"@types/lodash": "^4.14.118",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/nodemailer": "^1.3.32",
"@types/passport": "^0.3.3",
"@types/passport-facebook": "^2.1.3",
"@types/request": "0.0.45",
"@types/supertest": "^2.0.0",
"@types/uuid": "^3.4.3",
"concurrently": "^3.4.0",
"jest": "^19.0.2",
"node-sass": "^4.11.0",
"nodemon": "^1.11.0",
"shelljs": "^0.7.7",
"supertest": "^2.0.1",
"ts-jest": "^19.0.8",
"tslint": "^5.0.0",
"typescript": "^3.1.6"
}
}