-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 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
{
"name": "dash_coreui_components",
"version": "0.1.0",
"description": "CoreUI components for Plotly Dash",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve --config ./webpack.serve.config.js --open",
"validate-build": "python _validate_init.py",
"build:js": "webpack --mode production",
"build:py": "dash-generate-components ./src/lib/components dash_coreui_components -p package-info.json",
"build:py_and_r": "dash-generate-components ./src/lib/components dash_coreui_components -p package-info.json --r-prefix ''",
"build:py_and_r-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py_and_r)",
"build": "npm run build:js && npm run build:py",
"build:activated": "npm run build:js && npm run build:py_and_r-activated"
},
"author": "The QCArchive Developers <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"ramda": "^0.26.1",
"react-onclickout": "^2.0.8",
"react-perfect-scrollbar": "^1.5.3",
"reactstrap": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"copyfiles": "^2.1.1",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"npm": "^6.13.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-docgen": "^4.1.1",
"react-dom": "^16.8.6",
"style-loader": "^0.23.1",
"styled-jsx": "^3.2.1",
"webpack": "^4.36.1",
"webpack-cli": "3.3.6",
"webpack-serve": "3.1.0"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}