-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.36 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
{
"name": "unity-rest-api",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run watch-node\"",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": "https://github.com/michaelbats/unity-rest-api.git",
"author": "Sebastian L. Gug",
"license": "MIT",
"private": true,
"dependencies": {
"@types/cors": "^2.8.5",
"@types/passport-azure-ad": "^4.0.2",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.3",
"lodash": "^4.17.11",
"mysql": "^2.17.1",
"passport": "^0.4.0",
"passport-azure-ad": "^4.0.0",
"passport-facebook-token": "^3.3.0",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-linkedin-oauth2": "^1.6.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.1",
"@types/helmet": "^0.0.43",
"@types/jest": "^24.0.11",
"@types/joi": "^14.3.2",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.123",
"@types/node": "^11.13.0",
"@types/passport": "^1.0.0",
"@types/passport-facebook-token": "^0.4.33",
"@types/passport-google-oauth": "^1.0.39",
"@types/passport-jwt": "^3.0.1",
"@types/passport-linkedin-oauth2": "^1.5.0",
"@types/winston": "^2.4.4",
"chai": "^4.2.0",
"jest": "^24.7.1",
"nodemon": "^1.18.10",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "^3.4.2"
}
}