-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
39 lines (39 loc) · 904 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
38
39
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"serve": "turbo run serve",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"postprepare": "bash -c 'chmod ug+x .husky/*'"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"eslint": "^8.48.0",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"tsc-alias": "^1.8.10",
"tsconfig": "*",
"turbo": "latest"
},
"name": "finpro-nextjs-express-prisma",
"packageManager": "npm@8.15.0",
"workspaces": [
"apps/*",
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^1.7.2"
}
}