-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
109 lines (109 loc) · 3.4 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
{
"name": "graph-app-kit",
"version": "1.0.4",
"main": "index.js",
"scripts": {
"build": "node scripts/build.js",
"test": "CI=true npm run dev",
"test:package": "yarn build && yarn test:react && yarn test:preact",
"test:react": "CI=true node scripts/test.js --config=config/jest.config.base.js --env=jsdom test_package/react",
"test:preact": "CI=true node scripts/test.js --config=config/jest.config.preact.js --env=jsdom test_package/preact",
"test:all": "yarn test && yarn test:package",
"dev": "node scripts/test.js --config=config/jest.config.base.js --env=jsdom src",
"lint": "eslint --fix --ext .js --ext .jsx src",
"precommit": "lint-staged",
"prepare-dist": "node scripts/release.js",
"dist": "cd dist && npm publish",
"clean-dist": "cat ./.npmrc > dist/.npmrc",
"playground": "styleguidist server",
"playground:build": "styleguidist build",
"start": "node scripts/start.js"
},
"lint-staged": {
"*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"license": "Apache-2.0",
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react-app": "^3.0.3",
"babel-runtime": "6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"css-loader": "^0.28.7",
"eslint": "4.4.1",
"eslint-config-prettier": "^2.6.0",
"eslint-config-react-app": "^2.0.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "7.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-cli": "^21.2.1",
"lint-staged": "^4.2.3",
"neo4j-driver": "^1.6.1",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^2.0.8",
"preact": "^8.2.6",
"preact-compat": "^3.17.0",
"preact-render-spy": "^1.2.1",
"prettier": "^1.7.4",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dev-utils": "^4.1.0",
"react-dom": "^16.0.0",
"react-styleguidist": "^6.0.32",
"react-test-renderer": "^16.0.0",
"style-loader": "^0.19.0",
"sw-precache-webpack-plugin": "^0.11.4",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.9.4",
"webpack-manifest-plugin": "^1.3.2",
"whatwg-fetch": "2.0.3"
},
"peerDependencies": {
"neo4j-driver": "^1.6.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"babel": {
"presets": [
"react-app"
]
},
"dependencies": {
"@data-ui/radial-chart": "0.0.11",
"@data-ui/theme": "0.0.9",
"@data-ui/xy-chart": "0.0.25",
"@vx/axis": "^0.0.142",
"@vx/glyph": "0.0.140",
"@vx/gradient": "^0.0.140",
"@vx/grid": "^0.0.142",
"@vx/group": "^0.0.140",
"@vx/legend": "0.0.143",
"@vx/mock-data": "^0.0.136",
"@vx/scale": "^0.0.143",
"@vx/shape": "0.0.142",
"ascii-data-table": "^2.1.1",
"codemirror": "^5.29.0",
"cypher-codemirror": "^1.0.5",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.74.2"
}
}