-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 3.5 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "react-kgraph",
"version": "0.2.2",
"license": "MIT",
"homepage": "https://github.com/unirakun/react-kgraph",
"repository": "github:unirakun/react-kgraph",
"bugs": "https://github.com/unirakun/react-kgraph/issues",
"contributors": [
"Fabien JUIF <[email protected]>",
"Guillaume CRESPEL <[email protected]>"
],
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"webcola": "^3.4.0"
},
"peerDependencies": {
"d3": "^5.15.0",
"d3-hierarchy": "^1.1.9",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"scripts": {
"pikapublish": "pika publish",
"build": "pika build",
"version": "npm run build",
"test": "echo \"todo\"",
"lint": "eslint --cache \"src/**\"",
"format": "prettier \"**/*.{ts,tsx,js,jsx,md,json}\" --write",
"ci:check": "prettier \"**/*.{ts,tsx,js,jsx,md,json}\" --check",
"ci": "run-p lint test ci:*",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"webcola",
"react",
"graph",
"tree",
"d3",
"svg",
"custom",
"customisable"
],
"devDependencies": {
"@babel/core": "^7.8.6",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-links": "^5.3.14",
"@storybook/addon-storysource": "^5.3.17",
"@storybook/addons": "^5.3.14",
"@storybook/react": "^5.3.14",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/d3": "^5.7.2",
"@types/lodash": "^4.14.149",
"@types/lodash.clonedeep": "^4.5.6",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"d3": "^5.15.0",
"d3-hierarchy": "^1.1.9",
"eslint": "^6.1.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"fork-ts-checker-webpack-plugin": "^4.0.5",
"gh-pages-deploy": "^0.5.1",
"husky": ">=4",
"lint-staged": ">=10",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"react": "^16.12.0",
"react-docgen-typescript-loader": "^3.6.0",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^16.12.0",
"storybook": "^5.3.14",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-web"
]
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,ts,tsx,json}": "prettier --write"
},
"eslintConfig": {
"extends": [
"airbnb-typescript",
"prettier"
],
"plugins": [
"prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"semi": "off",
"@typescript-eslint/semi": [
"error",
"never"
],
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-dupe-class-members": "off",
"react/jsx-props-no-spreading": "off",
"prettier/prettier": [
"error"
]
}
},
"gh-pages-deploy": {
"staticpath": "storybook-static",
"prep": [
"build-storybook"
]
}
}