This repository has been archived by the owner on Feb 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.27 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
{
"name": "@urbica/components",
"version": "1.2.0",
"description": "Urbica React Components",
"author": "Stepan Kuzmin <[email protected]> (stepankuzmin.ru)",
"license": "MIT",
"main": "dist/bundle.js",
"scripts": {
"commit": "git-cz",
"release": "standard-version",
"build-storybook": "build-storybook",
"build": "webpack -p --config webpack.config.js",
"deploy-storybook": "storybook-to-ghpages",
"lint": "eslint .",
"postpublish": "greenkeeper-postpublish",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"pre-commit": [
"lint",
"test:ci",
"build"
],
"keywords": [
"d3",
"react",
"data",
"visualization",
"library",
"graphs",
"charts",
"plots"
],
"dependencies": {
"d3-array": "1.2.1",
"d3-axis": "1.0.8",
"d3-path": "1.0.5",
"d3-scale": "1.0.7",
"d3-selection": "1.2.0",
"d3-shape": "1.2.0"
},
"peerDependencies": {
"prop-types": "15.5.10",
"react": "15.5.4",
"react-dom": "15.5.4"
},
"devDependencies": {
"@storybook/addon-backgrounds": "3.2.17",
"@storybook/addon-knobs": "3.2.17",
"@storybook/addon-options": "3.2.17",
"@storybook/cli": "3.2.17",
"@storybook/react": "3.2.17",
"@storybook/storybook-deployer": "2.8.1",
"babel-core": "6.26.0",
"babel-jest": "22.0.0",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"d3-time": "1.0.8",
"d3-time-format": "2.1.1",
"eslint": "4.13.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jest": "21.4.1",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.5.1",
"greenkeeper-postpublish": "1.3.0",
"jest": "22.0.0",
"pre-commit": "1.2.2",
"prop-types": "15.6.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-test-renderer": "16.2.0",
"standard-version": "4.2.0",
"webpack": "3.10.0"
}
}