-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.26 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
{
"name": "simple-node-typescript-starter",
"version": "1.0.0",
"description": "a typescript boilerplate based on best practices and tricks 🦄",
"main": "dist/server.js",
"author": "Pavel 'PK' Kaminsky <[email protected]> (http://www.pavel-kaminsky.com)",
"license": "ISC",
"engineStrict": true,
"engines": {
"node": ">= 10"
},
"scripts": {
"build": "tsc",
"start": "ts-node-dev src/server.ts",
"format": "prettier --write src/**/*.{json,ts}",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint src/**/*.ts --fix",
"lint:prettier": "prettier --config .prettierrc --write src/**/*.{ts,js,json}",
"jscpd": "jscpd",
"checkLicenses": "jsgl --local .",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"swagger": "swagger-jsdoc -d .swagger.js src/routes/*.ts",
"precommit": "lint-staged",
"prepush": "npm run build"
},
"homepage": "www.pavel-kaminsky.com",
"dependencies": {
"@types/body-parser": "^1.17.1",
"@types/express-validator": "^3.0.0",
"@types/query-string": "^6.3.0",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^8.0.0",
"ejs": "^3.0.0",
"express": "^4.16.3",
"express-rate-limit": "^5.0.0",
"express-session": "^1.15.6",
"express-status-monitor": "^1.2.6",
"express-validator": "^6.1.1",
"helmet": "^3.20.0",
"husky": "^4.0.0",
"isomorphic-fetch": "^2.2.1",
"jsend": "^1.1.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"moment": "^2.22.2",
"numeral": "^2.0.6",
"query-string": "^6.8.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.7",
"@types/dotenv": "6.1.1",
"@types/express-rate-limit": "2.9.7",
"@types/helmet": "0.0.47",
"@types/jest": "25.2.1",
"@types/jsend": "1.0.28",
"@types/lodash": "4.14.159",
"@types/node": "12.12.26",
"@types/supertest": "2.0.10",
"@types/swagger-ui-express": "4.1.1",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/parser": "2.18.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-css-modules": "2.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-json": "2.0.1",
"eslint-plugin-prettier": "3.1.2",
"jest": "25.1.0",
"js-green-licenses": "1.1.0",
"jscpd": "2.0.16",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"setup-polly-jest": "0.6.0",
"supertest": "4.0.2",
"swagger-jsdoc": "3.5.0",
"swagger-ui-express": "4.1.3",
"ts-jest": "25.1.0",
"ts-node-dev": "1.0.0-pre.44",
"typescript": "3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run format && npm run jscpd && npm test && npm run build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaminskypavel/simple-node-typescript-starter.git"
},
"bugs": {
"url": "https://github.com/kaminskypavel/simple-node-typescript-starter/issues"
}
}