-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.37 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.37 KB
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
{
"name": "auth-sample",
"version": "1.1.0",
"private": false,
"scripts": {
"start": "npm run build && npm run watch",
"build": "npm run build-ts && npm run tslint",
"serve": "nodemon build/application.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",
"build-sass": "node-sass src/public/css/main.scss build/public/css/main.css",
"watch-sass": "node-sass -w src/public/css/main.scss build/public/css/main.css",
"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 build/application.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\""
},
"devDependencies": {
"@types/api-error-handler": "^1.0.31",
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "^1.16.2",
"@types/dotenv": "^2.0.20",
"@types/express": "^4.0.35",
"@types/http-errors": "^1.6.1",
"@types/jsonwebtoken": "^7.2.4",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.7.32",
"@types/mysql": "^2.15.2",
"@types/node": "^7.0.12",
"@types/passport": "^0.3.3",
"@types/passport-facebook": "^2.1.7",
"@types/passport-google-oauth": "^1.0.37",
"@types/passport-http": "^0.3.3",
"@types/passport-http-bearer": "^1.0.31",
"@types/request": "^2.0.8",
"@types/rx": "^4.1.1",
"concurrently": "^3.5.1",
"dtslint": "^0.2.0",
"nodemon": "^1.12.1",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"dependencies": {
"api-error-handler": "^1.0.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "~1.17.1",
"debug": "~2.6.3",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"http-errors": "^1.6.2",
"jsonwebtoken": "^8.1.0",
"moment": "^2.18.1",
"morgan": "^1.8.2",
"mysql": "^2.15.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-kakao": "0.0.5",
"passport-naver": "^1.0.6",
"request": "^2.83.0",
"rx": "^4.1.0"
}
}