-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"apps/*"
],
"nohoist": [
"gpt-tokenizer"
]
},
"resolutions": {
"jest": "29.5.0",
"jest-cli": "29.5.0"
},
"scripts": {
"reset": "yarn clean && yarn && yarn build",
"clean": "npx rimraf ./node_modules ./*/**/node_modules ./*/**/yarn.lock ./*/**/build",
"build": "npx turbo build",
"build:browser": "yarn workspace @evo-ninja/ui run build",
"start": "yarn workspace evo-ninja run start",
"start:browser": "yarn workspace @evo-ninja/ui run start",
"start:api": "yarn workspace evo-ninja run start:api",
"lint": "npx turbo lint",
"lint:fix": "npx turbo lint -- --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "5.0.1",
"prettier": "3.1.0",
"rimraf": "~5.0.1",
"turbo": "1.10.16"
}
}