-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
67
68
69
70
{
"name": "composer-suite-monorepo",
"private": true,
"version": "1.0.0",
"main": "index.js",
"author": "Hendrik Mans <[email protected]>",
"license": "MIT",
"preconstruct": {
"packages": [
"packages/*"
]
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": false,
"arrowParens": "always"
},
"scripts": {
"build": "pnpm clean && turbo build",
"build:packages": "pnpm build --filter=./packages/*",
"build:apps": "pnpm build --filter=./apps/*",
"clean": "rimraf packages/*/*/dist packages/*/dist",
"clean:vite": "rimraf **/node_modules/.vite",
"dev": "turbo dev",
"dev:link": "preconstruct dev",
"postinstall": "preconstruct dev",
"test": "jest",
"ci": "preconstruct validate && pnpm build && pnpm test",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:release": "pnpm ci && pnpm changeset publish"
},
"dependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.25.2",
"@manypkg/cli": "^0.19.2",
"@preconstruct/cli": "^2.2.2",
"@react-three/fiber": "^8.8.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.5",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/three": "^0.144.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.1.2",
"postprocessing": "^6.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.145.0",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typedoc": "^0.23.18",
"typescript": "^4.9.3"
},
"stackblitz": {
"startCommand": "cd apps/vfx-composer-examples && pnpm dev"
},
"devDependencies": {
"rimraf": "^3.0.2",
"turbo": "^1.6.3"
}
}