-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1020 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1020 Bytes
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
{
"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",
"@types/leaflet": "^1.9.14",
"cypress": "^13.15.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": "^2.3.0"
},
"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",
"leaflet": "^1.9.4",
"react-leaflet": "^4.2.1"
}
}