-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "express-typescript-starter",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"test": "",
"dev": "nodemon -e ts -L --exec \"tsc && node ./dist/app.js\" || exit 1",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"prettier --parser typescript --write",
"npm run format"
]
},
"author": "9akashnp8",
"license": "ISC",
"dependencies": {
"@9akashnp8/express-response-module": "^0.0.2",
"@supabase/supabase-js": "^2.38.4",
"dotenv": "^16.3.1",
"express": "^4.18.2"
},
"devDependencies": {
"@9akashnp8/eslint-config-node": "^1.0.1",
"@types/express": "^4.17.19",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}