-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "hacky-node-template",
"version": "0.0.1",
"description": "A bare minimum node typescript setup to get started building",
"author": "Mukesh <[email protected]>",
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"watch": "tsup --watch",
"build": "tsup",
"generate": "npx prisma generate",
"dev": "cross-env NODE_ENV=development nodemon dist/index.js",
"start": "cross-env NODE_ENV=production pnpm build && pnpm generate && node dist/index.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"dotenv": "^16.0.1",
"express": "^4.18.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/express": "^4.17.13",
"@types/node": "^18.7.3",
"cross-env": "^7.0.3",
"husky": "^8.0.1",
"prisma": "^4.2.1",
"tsup": "^6.2.2",
"typescript": "^4.7.4"
}
}