forked from microsoft/TypeScript-Node-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.73 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
{
"name": "michael-neely-fyp",
"version": "0.0.1",
"description": "NUI Galway 4BCT Final Year Project - Michael Neely",
"repository": {
"type": "git",
"url": "https://github.com/michaeljneelysd/Final-Year-Project"
},
"author": "Michael Neely",
"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 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"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": {
"@sendgrid/mail": "6.2.1",
"accesscontrol": "2.2.1",
"async": "2.6.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "3.5.1",
"body-parser": "1.18.2",
"compression": "1.7.1",
"connect-mongo": "2.0.1",
"corenlp": "1.4.2",
"dotenv": "5.0.1",
"errorhandler": "1.5.0",
"express": "4.16.2",
"express-flash": "0.0.2",
"express-limiter": "1.6.1",
"express-session": "1.15.6",
"express-validator": "5.1.1",
"fs-extra": "5.0.0",
"got": "8.3.0",
"helmet": "3.12.0",
"lodash": "4.17.5",
"lusca": "1.5.2",
"mongoose": "5.0.14",
"morgan": "1.9.0",
"passport": "0.4.0",
"passport-local": "1.0.0",
"promise.prototype.finally": "3.1.0",
"pug": "2.0.0-rc.4",
"redis": "2.8.0",
"reflect-metadata": "0.1.12",
"request": "2.83.0",
"string-similarity": "1.2.0",
"typegoose": "5.0.0",
"winston": "2.4.0",
"xml-js": "1.6.2"
},
"devDependencies": {
"@types/async": "^2.0.45",
"@types/bcrypt-nodejs": "0.0.30",
"@types/bluebird": "^3.5.18",
"@types/body-parser": "^1.16.8",
"@types/chai": "^4.1.2",
"@types/compression": "0.0.33",
"@types/connect-mongo": "0.0.34",
"@types/dotenv": "^4.0.2",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.0.35",
"@types/express-session": "^1.15.6",
"@types/fs-extra": "^5.0.1",
"@types/got": "^7.1.8",
"@types/jest": "^21.1.8",
"@types/jquery": "^3.2.17",
"@types/lodash": "^4.14.106",
"@types/lusca": "^1.5.0",
"@types/mongodb": "^3.0.5",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.50",
"@types/nodemailer": "^1.3.32",
"@types/passport": "^0.4.4",
"@types/passport-local": "^1.0.33",
"@types/passport-strategy": "^0.2.33",
"@types/promise.prototype.finally": "^2.0.2",
"@types/redis": "^2.8.6",
"@types/request": "^2.0.9",
"@types/shelljs": "^0.7.7",
"@types/sinon": "^4.3.0",
"@types/supertest": "^2.0.4",
"@types/winston": "2.3.8",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"jest": "^22.4.3",
"node-sass": "^4.7.2",
"nodemon": "^1.13.0",
"sinon": "^4.5.0",
"shelljs": "^0.7.7",
"supertest": "^3.0.0",
"ts-jest": "^22.4.2",
"ts-node": "^4.0.2",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}