This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.98 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
{
"dependencies": {
"async": "^2.1.2",
"async-each": "^1.0.1",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.2",
"colors": "^1.1.2",
"compression": "^1.6.2",
"connect-mongo": "^1.3.2",
"dotenv": "^2.0.0",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-flash": "^0.0.2",
"express-session": "^1.14.2",
"express-validator": "^3.1.3",
"fbgraph": "^1.3.0",
"has-flag": "^2.0.0",
"lodash": "^4.17.4",
"lusca": "^1.4.1",
"mongoose": "^4.6.6",
"morgan": "^1.7.0",
"pug": "^2.0.0-beta6",
"request": "^2.78.0"
},
"scripts": {
"dev": " concurrently -k -p \"[{name}]\" -n \"SCSS,TypeScript,Server\" -c \"magenta,green.bold,cyan.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve\"",
"serve": "PORT=4333 nodemon ./dist/server_portal.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"watch-sass": "node-sass -w src/public/css/main.scss dist/public/css/main.css",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"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 serve\""
},
"devDependencies": {
"@types/async": "^2.0.40",
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "^1.16.2",
"@types/colors": "^1.1.3",
"@types/compression": "0.0.33",
"@types/connect-mongo": "0.0.32",
"@types/dotenv": "^2.0.20",
"@types/errorhandler": "0.0.30",
"@types/express": "^4.0.35",
"@types/jest": "^19.2.2",
"@types/jquery": "^2.0.41",
"@types/lodash": "^4.14.63",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/request": "0.0.45",
"@types/supertest": "^2.0.0",
"concurrently": "^3.4.0",
"jest": "^19.0.2",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"shelljs": "^0.7.7",
"supertest": "^2.0.1",
"ts-jest": "^19.0.8",
"tslint": "^5.0.0",
"typescript": "^2.4.0"
}
}