-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
47
48
49
50
{
"name": "kiseki-orbment-assistant",
"version": "0.1.0",
"description": "An assistant tool to help user set up orbment in Trails Series games.",
"author": {
"name": "AlvISs_Reimu",
"email": "me@alvissreimu.com"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"engines": {
"npm": ">=9.0.0",
"node": ">=20.0.0"
},
"scripts": {
"build": "npm run build --workspace=kiseki-orbment-assistant-frontend",
"dev": "npm run dev --workspace=kiseki-orbment-assistant-frontend",
"lint": "eslint --ext .js,.ts,.tsx shared/ packages/front-end/src/",
"lint-staged": "lint-staged",
"format-check": "prettier --check **/*.{js,ts,tsx,json}",
"format": "prettier --write **/*.{js,ts,tsx,json}",
"test": "vitest --no-watch",
"prepare": "husky"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-multiline-arrays": "^3.0.6",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
}
}