forked from mml-io/avatar-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "avatar-tools",
"private": true,
"type": "module",
"engines": {
"node": "20.x"
},
"scripts": {
"preinstall": "node check-node-version.js",
"build": "lerna run --stream build",
"convert": "node ./clis/glft-avatar-exporter/build/index.js",
"clean-animation": "node ./clis/animation-cleaner/build/index.js",
"draco-encode": "node ./clis/draco-encoder/build/index.js",
"iterate": "npm run build && lerna run --parallel --stream iterate",
"type-check-all": "lerna run --stream type-check",
"test-all": "lerna run --parallel --stream --no-bail test",
"lint-all": "lerna run --stream lint",
"lint-fix-all": "lerna run --stream lint-fix",
"link-all": "lerna exec \"npm link\" --no-private && npm run print-links",
"version": "lerna version --no-push --force-publish"
},
"workspaces": [
"packages/*",
"clis/*",
"tools/*",
"github-pages-publisher"
],
"devDependencies": {
"@types/jest": "29.5.12",
"@types/jju": "^1.4.5",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"concurrently": "^8.2.2",
"esbuild": "0.20.2",
"esbuild-css-modules-plugin": "3.1.0",
"esbuild-jest": "0.5.0",
"esbuild-plugin-copy": "2.1.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jju": "^1.4.0",
"lerna": "8.1.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tmp": "^0.2.3",
"ts-node": "^10.9.2",
"tsx": "4.7.2",
"typescript": "^5.4.5"
}
}