-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 2.11 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
{
"name": "express-ts-boilerplate",
"version": "1.0.0",
"description": "An Express.js boilerplate backend",
"author": "Louis-Kaan Ay",
"license": "MIT",
"private": false,
"main": "index.js",
"type": "commonjs",
"scripts": {
"dev": "tsc --project './tsconfig.json' --watch &NODE_ENV=development nodemon ./dist/index.js",
"build": "tsc --project './tsconfig.json'",
"start": "yarn run build && NODE_ENV=production node ./dist/index.js",
"watch": "tsc --project './tsconfig.json' --watch",
"lint": "eslint src/**/*.{ts,css,js,html}",
"lint:fix": "eslint --fix --ext src/**/*.ts",
"code:format": "prettier --write src/**/*.ts",
"code:check": "prettier --check src/**/*.ts",
"code:format:specific-file": "prettier --write ",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"express": "^4.18.2",
"helmet": "^6.0.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@tsconfig/node-lts-strictest-esm": "^18.12.1",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "*"
},
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"homepage": "",
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
}
}