-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
{
"name": "integra",
"description": "Web application for displaying political data",
"private": true,
"version": "0.0.0",
"license": "MIT",
"author": "Jeremy Nguyen <[email protected]> (https://jeremynguyen.dev)",
"repository": {
"type": "git",
"url": "https://github.com/jeremynguyencs/integra.git"
},
"homepage": "https://github.com/jeremynguyencs/integra#readme",
"workspaces": [
"apps/*",
"packages/*"
],
"prisma": {
"schema": "packages/database/prisma/schema.prisma"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write --ignore-path .gitignore \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check --ignore-path .gitignore \"**/*.{ts,tsx,md,json}\"",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn format",
"yarn lint"
]
},
"devDependencies": {
"eslint-config-custom": "*",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"turbo": "^1.4.6",
"typescript": "^4.8.3"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
}
}