-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.59 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "biseo",
"private": true,
"version": "1.0.0",
"repository": "https://github.com/sparcs-kaist/biseo.git",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"postinstall": "pnpm typegen",
"web": "pnpm -F @biseo/web",
"api": "dotenv -- pnpm -F @biseo/api",
"interface": "pnpm -F @biseo/interface",
"dev": "dotenv -- pnpm -r --stream --parallel dev",
"db": "dotenv -- pnpm -F @biseo/api db",
"migrate": "dotenv -- pnpm -F @biseo/api migrate",
"typegen": "pnpm -F @biseo/api typegen",
"studio": "dotenv -- pnpm -F @biseo/api studio",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm eslint . && pnpm prettier --config ./.prettierrc --check -u .",
"build": "pnpm -r build",
"clean": "pnpm -r clean"
},
"lint-staged": {
"*.{ts,tsx}": [
"pnpm eslint",
"prettier --config ./.prettierrc --write -u"
]
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.1",
"dotenv-cli": "^7.2.1",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.3",
"typescript": "^5.1.6"
},
"engines": {
"node": "^18.0.0",
"pnpm": "^8.0.0"
}
}