This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
80 lines (80 loc) · 2.69 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
{
"name": "dash-renderer",
"version": "0.24.0",
"description": "render dash components in react",
"main": "src/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint --quiet --fix .",
"lint:test": "./node_modules/.bin/eslint .",
"prepublish": "npm test && npm run build && npm run build:dev",
"publish-all": "npm publish && echo \"twine!!!\"",
"publish-pypi": "npm run prepublish && python setup.py sdist upload",
"build:dev": "webpack --mode development",
"build:dev.watch": "webpack --mode development --watch",
"build": "webpack --mode production",
"start": "webpack-serve ./webpack.serve.config.js",
"format": "prettier --config .prettierrc --write src/**/*.js src/**/*.react.js",
"format:test": "prettier --config .prettierrc src/**/*.js src/**/*.react.js --list-different",
"test": "npm run lint",
"test:py": "python -m unittest -v tests.test_render tests.test_race_conditions"
},
"author": "chriddyp",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@svgr/webpack": "^4.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"cookie": "^0.3.1",
"cross-env": "^4.0.0",
"dependency-graph": "^0.5.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"query-string": "^4.3.2",
"radium": "^0.22.1",
"ramda": "^0.23.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"redux-actions": "^0.9.1",
"redux-thunk": "^2.0.1",
"uniqid": "^5.0.3",
"viz.js": "1.8.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-partial": "^1.2.0",
"webpack-serve": "^1.0.2",
"whatwg-fetch": "^2.0.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-es2015-modules-commonjs-simple": "^6.7.4",
"babel-preset-es2015-webpack": "^6.4.1",
"babel-preset-stage-2": "^6.24.1",
"check-prop-types": "^1.1.2",
"css-loader": "^1.0.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"prettier-stylelint": "^0.4.2",
"raw-loader": "^2.0.0",
"react-hot-loader": "^1.3.0",
"redux-logger": "^2.8.0",
"style-loader": "^0.23.1",
"webpack-dev-server": "^3.1.11"
}
}