-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 3.21 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
106
{
"name": "aoviz",
"version": "0.0.13",
"description": "d3 graphs force knowledge 力导向图",
"main": "dist/index.js",
"module": "es/index.js",
"types": "dist/index.d.ts",
"repository": "/~https://github.com/Aoviz-Team/graphs",
"author": "Steven",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"build": "yarn workspace @aoviz/graphs build && yarn workspace @aoviz/mock build && yarn workspace @aoviz/g-plugins build",
"build:graphs": "yarn workspace @aoviz/graphs build",
"docs:dev": "yarn workspace @aoviz/docs dev",
"docs:build": "yarn workspace @aoviz/docs build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint ./src/force/ --ext .ts,.js,.tsx",
"postinstall": "remix setup node && patch-package",
"publish:latest": "lerna publish"
},
"workspaces": {
"packages": [
"docs",
"src",
"packages/*",
"storybook"
]
},
"dependencies": {
"@tweenjs/tween.js": "^18.6.4",
"d3-drag": "^3.0.0",
"d3-force": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"lerna": "^6.3.0",
"lodash-es": "^4.17.21",
"rxjs": "^7.5.7",
"tinycolor2": "^1.5.1"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@mdx-js/react": "^2.1.5",
"@react-three/fiber": "^8.9.1",
"@remix-run/dev": "^1.7.5",
"@remix-run/serve": "^1.7.5",
"@rollup/plugin-json": "^5.0.2",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-docs": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack4": "^6.5.13",
"@storybook/manager-webpack4": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@storybook/theming": "^6.5.13",
"@studiocompanion/eslint-config": "^1.2.2",
"@types/d3": "^7.4.0",
"@types/lodash-es": "^4.17.6",
"@types/three": "^0.146.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.41.0",
"babel-loader": "^8.2.5",
"chokidar": "^3.5.3",
"concurrently": "^7.5.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-storybook": "^0.6.7",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"konva": "^8.3.14",
"lint-staged": "^13.0.3",
"patch-package": "^6.5.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-konva": "^18.2.3",
"react-zdog": "^1.0.11",
"rollup": "^3.2.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-uglify": "^6.0.4",
"three": "^0.147.0",
"ts-node": "^10.9.1",
"typescript": "*",
"zdog": "^1.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --verbose"
}
},
"lint-staged": {
"src/**/*.{tsx,ts}": "eslint"
}
}