-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "express-typescript-boilerplate",
"version": "2.0.0",
"description": "Minimalistic boilerplate to quick-start express-typescript-boilerplate",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"mongoose": "^8.2.2"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "~20.11.29",
"@types/sinon-express-mock": "^1.3.12",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "~5.0.5",
"sinon": "^17.0.1",
"sinon-express-mock": "^2.2.1",
"tsc-alias": "^1.8.8",
"tsc-watch": "^6.0.4",
"tsutils": "~3.21.0",
"typescript": "~5.4.2"
},
"scripts": {
"tsc": "tsc && tsc-alias",
"start": "node dist/server.js",
"clean": "rimraf dist/",
"compile": "run-s clean tsc start",
"dev": "nodemon",
"build": "run-s clean tsc",
"lint": "eslint src/",
"lint:fix": "eslint --cache --fix src/ && prettier --write src/",
"test": "jest",
"prepare": "husky install"
}
}