-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@gs.i/root",
"_name": "@gs.i/root",
"description": "General Scene Interface Project",
"private": true,
"workspaces": {
"packages": [
"packages/**",
"examples-vite",
"test"
],
"nohoist": [
"**/gl2/**",
"**/gl2",
"**/@gs.i/gl2-renderer/**",
"**/@gs.i/gl2-renderer",
"**/@gs.i/three-lite-renderer/**",
"**/@gs.i/three-lite-renderer",
"**/@gs.i/utils-transform",
"**/three-lite/**",
"**/three-lite",
"**/@gs.i/examples/**",
"**/@gs.i/examples-vite/**",
"**/@gs.i/test/**",
"**/@types/**"
]
},
"scripts": {
"setup": "node scripts/setup.mjs",
"setup:core": "node scripts/setup.mjs --no-examples",
"setup:examples": "./scripts/setupExamples.sh",
"updateStructure": "rm -rf ./yarn.lock && node scripts/updateUmbrella.mjs && npm run setup && node scripts/copyFiles.mjs && node scripts/fixTsReferences.mjs",
"start:webpack": "npx concurrently --kill-others --names \"watch,examples\" \"npm run watch\" \"cd ./examples && npm start\" ",
"start": "npx concurrently --kill-others --names \"watch,examples\" \"npm run watch\" \"cd ./examples-vite && npm start\" ",
"build": "lerna run --no-private --stream build",
"rebuild": "lerna run --no-private --stream rebuild",
"watch": "node scripts/watch.mjs --fast",
"clean": "rm -rf ./yarn.lock && rm -rf ./node_modules && lerna clean -y && lerna run --no-private --stream --parallel clean",
"test": "cd test && npm test",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts,cjs,cts,mjs,mts,jsx,tsx}": [
"eslint",
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"chokidar": "^3.5.2",
"colors": "=1.4.0",
"concurrently": "6.4.0",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"glob": "7.2.0",
"husky": "^7.0.2",
"jsonc-parser": "^3.0.0",
"lerna": "4.0.0",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"rimraf": "3.0.2",
"shelljs": "^0.8.5",
"typescript": "^5.0.0"
}
}