-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 3.7 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
{
"name": "express-typescript-starter",
"version": "0.1.0",
"description": "A node+typescript+mongoose starter boilerplate for rest APIs",
"repository": {
"type": "git",
"url": "https://github.com/ahsan98/node-typescript-rest-boilerplate"
},
"author": "Ahsan Naveed",
"license": "MIT",
"scripts": {
"build": "npm run build-sass && npm run build-ts && npm run lint && npm run copy-static-assets",
"build-sass": "node-sass src/public/css/main.scss dist/public/css/main.css",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"build-ts": "tsc",
"debug": "npm run build && npm run watch-debug",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve": "node dist/server.js",
"serve-debug": "nodemon --inspect dist/server.js",
"start": "npm run serve",
"test": "jest --forceExit --coverage --verbose",
"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\"",
"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\"",
"watch-node": "nodemon dist/server.js",
"watch-sass": "node-sass -w src/public/css/main.scss dist/public/css/main.css",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w"
},
"dependencies": {
"async": "^3.2.0",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"lodash": "^4.17.15",
"lusca": "^1.6.1",
"moment": "^2.27.0",
"mongoose": "^5.9.19",
"nodemailer": "^6.4.10",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"require-dir": "^1.2.0",
"winston": "^3.3.0"
},
"devDependencies": {
"@types/async": "^3.2.3",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bluebird": "^3.5.32",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/compression": "^1.7.0",
"@types/concurrently": "^4.1.1",
"@types/errorhandler": "^0.0.32",
"@types/eslint": "^6.8.1",
"@types/express": "^4.17.6",
"@types/jquery": "^3.5.0",
"@types/lodash": "^4.14.155",
"@types/lusca": "^1.6.2",
"@types/mongoose": "^5.7.27",
"@types/node": "^12.12.47",
"@types/node-sass": "^4.11.1",
"@types/nodemailer": "^6.4.0",
"@types/passport": "^1.0.3",
"@types/passport-facebook": "^2.1.10",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/pug": "^2.0.4",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.46",
"@types/require-dir": "^1.0.1",
"@types/shelljs": "^0.8.8",
"@types/supertest": "^2.0.9",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"acorn": "^7.3.1",
"chai": "^4.2.0",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"jest": "^26.0.1",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"shelljs": "^0.8.4",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}