-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.05 KB
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
{
"name": "robust-express-app",
"version": "0.0.0",
"description": "an exploration into what practices are necessary and advisable for running a robust ExpressJS application in production",
"main": "src/index.ts",
"scripts": {
"dev": "npm i && npm-run-all --parallel dev:*",
"dev:build": "gulp dev",
"dev:nodemon": "nodemon dist/index",
"test": "jest",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}'",
"fix": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --fix --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrianEmilius/robust-express-app.git"
},
"keywords": [
"expressjs",
"performance",
"security",
"testing"
],
"author": "Brian Emilius <brian@brianemilius.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrianEmilius/robust-express-app/issues"
},
"homepage": "https://github.com/BrianEmilius/robust-express-app#readme",
"dependencies": {
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/memory-cache": "^0.2.0",
"@types/node": "^12.12.14",
"@types/redis": "^2.8.14",
"@types/winston": "^2.4.4",
"connect-redis": "^4.0.3",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-ejs-extend": "0.0.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.0",
"express-validator": "^6.3.0",
"express-winston": "^4.0.1",
"flash": "^1.1.0",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"memory-cache": "^0.2.0",
"npm-run-all": "^4.1.5",
"redis": "^2.8.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.2",
"uid": "0.0.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"npm run fix",
"git add"
]
}
}