-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.99 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "express-typescript-starter",
"version": "0.1.0",
"description": "A starting point for Node.js express apps with TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/TypeScript-Node-Starter.git"
},
"author": "Bowden Kelly",
"license": "MIT",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run lint && 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-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --coverage --verbose false",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"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-ts\" \"npm run serve-debug\""
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"async": "^3.2.4",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"connect-mongo": "^5.0.0",
"dotenv": "^16.0.3",
"errorhandler": "^1.5.1",
"express": "^4.18.2",
"express-flash": "0.0.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"fbgraph": "^1.4.4",
"husky": "^8.0.3",
"jsonwebtoken": "^9.0.0",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"lusca": "^1.7.0",
"mongodb-memory-server": "^8.12.2",
"mongoose": "^7.1.1",
"passport-facebook": "^3.0.0",
"passport-google-id-token": "^0.4.7",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/async": "^3.2.20",
"@types/bcrypt-nodejs": "^0.0.31",
"@types/bluebird": "^3.5.38",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.5",
"@types/compression": "^1.7.2",
"@types/concurrently": "^6.4.0",
"@types/connect-mongo": "^3.1.3",
"@types/errorhandler": "^1.5.0",
"@types/eslint": "^8.37.0",
"@types/express": "^4.17.17",
"@types/express-flash": "0.0.2",
"@types/express-session": "^1.17.7",
"@types/jest": "^29.5.1",
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.194",
"@types/lusca": "^1.7.1",
"@types/mongoose": "^5.11.96",
"@types/node": "^20.1.7",
"@types/node-sass": "^4.11.3",
"@types/nodemailer": "^6.4.7",
"@types/passport": "^1.0.12",
"@types/passport-facebook": "^2.1.11",
"@types/passport-local": "^1.0.35",
"@types/pug": "^2.0.6",
"@types/request": "^2.48.8",
"@types/request-promise": "^4.1.48",
"@types/shelljs": "^0.8.12",
"@types/supertest": "^2.0.12",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"chai": "^4.3.7",
"concurrently": "^8.0.1",
"eslint": "^8.40.0",
"jest": "^29.5.0",
"node-sass": "^8.0.0",
"nodemon": "^2.0.22",
"shelljs": "^0.8.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint --fix"
]
},
"jest": {
"testEnvironment": "node"
},
"bugs": {
"url": "https://github.com/Microsoft/TypeScript-Node-Starter/issues"
},
"homepage": "https://github.com/Microsoft/TypeScript-Node-Starter#readme",
"main": ".prettierrc.js",
"directories": {
"test": "test"
},
"keywords": []
}