-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
105 lines (105 loc) · 3.42 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "turbox",
"version": "1.0.0",
"private": true,
"description": "",
"scripts": {
"start": "webpack-dev-server --config ./demo/webpack.config.js",
"build": "NODE_ENV=production webpack --mode production --config ./demo/webpack.config.js",
"lint-tsc": "tsc --noEmit",
"typedoc": "rm -rf typedocs && cross-env GEN_ENV=typedoc npx ./gen.js",
"build:all": "pnpm install --link-workspace-packages true && pnpm run -r build:all && pnpm run typedoc && git restore ./pnpm-lock.yaml",
"build:all-changelog": "pnpm run build:all && pnpm changeset && git push --all",
"changelog": "rm -rf ./docs/CHANGELOG.md && cross-env GEN_ENV=changelog npx ./gen.js && git add . && git commit -m 'doc: add changelog' --no-verify && git push --all",
"release": "pnpm run build:all && pnpm changeset version && pnpm run changelog && pnpm changeset tag && pnpm -r publish",
"release:pre": "pnpm run build:all && pnpm -r publish --dry-run --report-summary --no-git-checks --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turbox3d/turbox.git"
},
"keywords": [
"framework",
"productivity application",
"front-end"
],
"author": "feifan <darknight3@vip.qq.com>",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.11",
"@types/node": "~20.10.5",
"@types/react": "~18.2.45",
"@types/react-dom": "~18.2.18",
"@types/three": "~0.159.0",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vscode/vsce": "^2.22.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.49",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.3.3",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "~9.5.1",
"typedoc": "~0.25.4",
"typescript": "~5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@babel/runtime": "^7.23.6",
"@turbox3d/reactivity-react": "^1.1.27",
"@turbox3d/turbox": "^1.1.40",
"@turbox3d/turbox-dev-tool": "^1.0.22",
"antd": "^5.22.7",
"lodash": "^4.17.21",
"mobx": "^6.12.0",
"pixi.js": "~7.3.2",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-router-dom": "~6.21.1",
"three": "~0.159.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint-tsc"
}
}
}