-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
70 lines (70 loc) · 2.68 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": "monorepo-root",
"private": true,
"scripts": {
"dev": "pnpm --filter @galacean/effects-demo dev",
"preview": "pnpm --filter @galacean/effects-demo preview",
"build": "pnpm --filter \"./packages/**\" build",
"build:plugins": "pnpm build && pnpm --filter \"./plugin-packages/**\" build",
"build:docs": "pnpm build && pnpm build:plugins && typedoc",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"test": "pnpm --filter @galacean/effects-test test",
"version": "node ./scripts/update-version",
"changelog": "git fetch origin && node ./scripts/print-changelog",
"check:ts": "tsc -b ./tsconfig.check.json",
"clean:nm": "rimraf '{packages,web-packages,plugin-packages}/**/node_modules' && rimraf 'node_modules'",
"clean:dist": "rimraf '{packages,web-packages,plugin-packages}/**/dist'",
"clean:artifacts": "rimraf '{packages,web-packages,plugin-packages}/**/src/**/*+(.d.ts|.js.map)'",
"clean:declaration": "rimraf '{packages,web-packages,plugin-packages}/**/*+(.tsbuildinfo)'",
"clean:all": "pnpm clean:artifacts && pnpm clean:declaration && pnpm clean:dist && pnpm clean:nm",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"publish": "pnpm -r publish --no-git-checks --filter \"./packages/**\" --filter \"./plugin-packages/**\""
},
"dependencies": {
"core-js": "^3.32.1",
"string-hash": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^18.4.3",
"@manypkg/get-packages": "^2.2.0",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@types/chai": "4.3.4",
"@types/chai-spies": "1.0.0",
"@types/mocha": "10.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-legacy": "^4.1.1",
"ansi-colors": "^4.1.3",
"chalk": "^4.1.2",
"concurrently": "^8.2.1",
"enquirer": "^2.4.1",
"eslint": "^8.48.0",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^11.1.1",
"husky": "^7.0.4",
"ip": "^1.1.8",
"js-yaml": "^4.1.0",
"jsdom": "^22.1.0",
"lint-staged": "^11.2.6",
"pnpm": "^8.7.0",
"rimraf": "^5.0.5",
"rollup": "^2.79.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-typescript2": "^0.34.1",
"simple-git": "^3.19.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.4",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-externals": "^0.6.2",
"vite-tsconfig-paths": "^4.2.2"
}
}