-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
122 lines (122 loc) · 3.81 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
{
"name": "react-cubedb",
"version": "1.4.0",
"description": "Ract client to CubeDB",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cubedb/react-cubedb.git"
},
"contributors": [
"sztanko",
"jrfferreira",
"danielmt",
"Daniele Esposti <[email protected]>"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/cubedb/react-cubedb/issues"
},
"homepage": "https://github.com/cubedb/react-cubedb",
"keywords": [
"react-component",
"react",
"d3"
],
"options": {
"mocha": "--require scripts/mocha_runner src/**/__tests__/**/*.js"
},
"scripts": {
"prepare": "npm run build:clean && npm run build",
"prepublish": "npm run build:clean && npm run build",
"build": "npm run build:js && npm run build:scss",
"build:clean": "rimraf ./dist",
"build:js": "babel ./src -d ./dist",
"build:scss": "cpy './src/style/*.scss' ./dist/style",
"build:storybook": "build-storybook -o demo",
"test": "jest",
"test:updateSnapshot": "jest --updateSnapshot",
"test:storybook": "storyshots",
"storybook": "start-storybook -p 6006",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.8.3",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-knobs": "^3.1.6",
"@storybook/addon-storyshots": "^6.4.18",
"@storybook/react": "^6.4.18",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^28.0.0",
"cpy-cli": "^4.0.0",
"css-loader": "^6.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.32.0",
"eslint-plugin-flowtype": "^7.0.0",
"eslint-plugin-jasmine": "^4.1.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-jsx-control-statements": "^3.0.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.18.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.0.0",
"jsdom": "^19.0.0",
"node-sass": "^7.0.1",
"react": "^16.12.0",
"react-addons-test-utils": "^15.6.2",
"react-doc-generator": "^1.2.5",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.1",
"sass-loader": "^12.4.0",
"storyshots": "^3.2.2",
"style-loader": "^3.3.1"
},
"peerDependencies": {
"d3": "^4.9.1",
"lodash": "^4.17.4",
"react": "^15.5.0 || ^16.0.0",
"react-bootstrap": "2.5.0",
"react-dom": "^15.5.0 || ^16.0.0"
},
"dependencies": {
"d3": "^6.7.0",
"lodash": "^4.17.15",
"react-bootstrap": "2.5.0",
"react-faux-dom": "^4.0.3"
},
"jest": {
"moduleNameMapper": {
"\\.scss$": "identity-obj-proxy"
},
"setupFiles": [
"<rootDir>/src/testSetup.js"
],
"roots": [
"<rootDir>/src"
]
}
}