-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.78 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
{
"name": "express-typescript-starter",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./dist/bin/www",
"build": "babel src --extensions .ts --out-dir dist",
"build:dev": "npm run build -- --watch",
"lint": "eslint . --ignore-path .gitignore --ext .js,.ts",
"check-types": "tsc",
"prettier": "prettier --ignore-path .gitignore --write ./**/*.{js,ts,json}",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm-run-all --parallel check-types check-format lint build",
"serve:dev": "nodemon ./dist/bin/www.js",
"dev": "npm-run-all --parallel build:dev serve:dev"
},
"dependencies": {
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.4.1",
"http-errors": "^1.8.0",
"morgan": "^1.10.0",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.7",
"@types/http-errors": "^1.8.0",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"debug": "^4.1.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.0",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.5"
}
}