-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "javascript-utils",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:three": "yarn workspace @packages/three run dev",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint '**/*.{ts,js}'",
"lint:fix": "eslint '**/*.{ts,js}' --fix"
},
"workspaces": {
"packages": [
"packages/**"
]
},
"devDependencies": {
"@packages/three": "workspace:^",
"@types/node": "^18.8.0",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"sass": "^1.55.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"vite": "^3.0.9",
"vitest": "^0.22.1"
},
"packageManager": "[email protected]",
"dependencies": {
"@yarnpkg/pnpify": "^4.0.0-rc.25"
}
}