-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.23 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
{
"name": "express-typescript-starter",
"version": "0.1.0",
"description": "A starting point for Node.js express apps with TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/TypeScript-Node-Starter"
},
"author": "Bowden Kelly",
"license": "MIT",
"scripts": {
"start": "npm run serve",
"build": "npm run build-sass && npm run build-ts && npm run tslint && npm run copy-static-assets",
"serve": "node dist/server.js",
"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\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"build-sass": "node-sass src/public/css/main.scss dist/public/css/main.css",
"watch-sass": "node-sass -w src/public/css/main.scss dist/public/css/main.css",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"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\""
},
"dependencies": {
"async": "^2.6.1",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"connect-mongo": "^2.0.1",
"dotenv": "^6.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.3",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"express-validator": "^5.3.0",
"fbgraph": "^1.4.4",
"lodash": "^4.17.10",
"lusca": "^1.6.1",
"moment": "^2.22.2",
"mongoose": "^5.2.13",
"nodemailer": "^4.6.8",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"pug": "^2.0.3",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/async": "^2.0.49",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bluebird": "^3.5.24",
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/connect-mongo": "^0.0.38",
"@types/dotenv": "^4.0.3",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.10",
"@types/jest": "^23.3.1",
"@types/jquery": "^3.3.6",
"@types/lodash": "^4.14.116",
"@types/lusca": "^1.5.0",
"@types/mongodb": "^3.1.4",
"@types/morgan": "^1.7.35",
"@types/node": "^10.9.4",
"@types/nodemailer": "^4.6.2",
"@types/passport": "^0.4.6",
"@types/passport-facebook": "^2.1.8",
"@types/passport-local": "^1.0.33",
"@types/request": "^2.47.1",
"@types/shelljs": "^0.8.0",
"@types/supertest": "^2.0.5",
"chai": "^4.1.2",
"concurrently": "^4.0.1",
"jest": "^23.5.0",
"node-sass": "^4.9.3",
"nodemon": "^1.18.4",
"shelljs": "^0.8.2",
"supertest": "^3.2.0",
"ts-jest": "^23.1.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
}
}