-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.07 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
{
"private": true,
"workspaces": [
"packages/common",
"packages/supervisor",
"packages/web"
],
"dependencies": {
"@types/node": "^20.10.3",
"fp-ts": "^2.16.1",
"io-ts": "^2.2.21",
"typescript": "^5.3.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.0"
},
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"lint:cached": "eslint --ext .js,.jsx,.ts,.tsx . --fix --cache",
"web:build": "yarn workspace @yonagi/web build",
"web:dev": "yarn workspace @yonagi/web dev",
"web:start": "yarn workspace @yonagi/web start"
}
}