forked from plotly/dash-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "dash-renderer",
"version": "0.14.3",
"description": "render dash components in react",
"main": "src/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint --quiet --fix .",
"prepublish": "npm test && npm run build:prod && 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:prod": "webpack --mode production",
"start": "webpack-serve ./webpack.serve.config.js",
"format": "prettier --config .prettierrc --write src/**/*.js",
"format:test": "prettier --config .prettierrc src/**/*.js --list-different",
"test": "npm run lint"
},
"author": "chriddyp",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"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",
"prop-types": "^15.6.2",
"query-string": "^4.3.2",
"radium": "^0.22.1",
"ramda": "^0.23.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-redux": "^4.4.9",
"redux": "^3.4.0",
"redux-actions": "^0.9.1",
"redux-thunk": "^2.3.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-serve": "^2.0.2",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^3.15.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^6.9.0",
"prettier": "^1.14.3",
"react-hot-loader": "^1.3.0",
"redux-logger": "^2.8.0",
"webpack-dev-server": "^3.1.9"
}
}