-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.2 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
{
"name": "node-starter",
"version": "0.0.1",
"description": "A simple starter for Node.js with typescript.",
"type": "module",
"engines": {
"node": ">= 16.13 <17"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DOTENV_CONFIG_PATH=.env.development npm run start",
"prod": "cross-env NODE_ENV=production DOTENV_CONFIG_PATH=.env.production npm run start",
"start": "nodemon -r dotenv/config build/src/app.js",
"clean": "rimraf coverage build",
"prebuild": "npm run lint",
"build": "npm run clean && tsc -p tsconfig.json",
"build:watch": "npm run clean && tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"build-types": "tsc --noEmit --pretty",
"test": "cross-env DOTENV_CONFIG_PATH=.env.development NODE_OPTIONS=--experimental-vm-modules jest --coverage --setupFiles dotenv/config",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "cross-env DOTENV_CONFIG_PATH=.env.development jest --watch --setupFiles dotenv/config",
"prepare": "husky install"
},
"dependencies": {
"express": "^4.18.1",
"helmet": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@types/express": "^4.17.13",
"@types/jest": "^27.5",
"@types/node": "^16",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.26",
"@typescript-eslint/parser": "^5.26",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.16",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"lint-staged": "^12.5.0",
"nodemon": "^2.0.19",
"prettier": "^2.6",
"rimraf": "^3.0",
"supertest": "^6.2.4",
"ts-jest": "^28.0",
"typescript": "^4.7.2"
},
"author": "jxeng"
}