-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 947 Bytes
/
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
{
"name": "mevn-backend",
"version": "0.0.1",
"description": "express boilerplate stack",
"main": "index.js",
"author": "Nusendra",
"license": "MIT",
"scripts": {
"dev": "tsup --watch --onSuccess \"node dist/index.js\"",
"start": "NODE_ENV=production node ./build/index.js",
"build": "tsup",
"lint": "eslint src/** --ext .ts",
"precommit": "lint-staged"
},
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.0"
},
"lint-staged": {
"*.ts": "yarn lint"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/express": "^4.17.14",
"@types/helmet": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.25.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsup": "^7.2.0",
"typescript": "^4.8.4"
}
}