-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.47 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
{
"name": "dash_cool_components",
"version": "0.1.5",
"description": "Cool React components, wrapped for Plotly Dash",
"repository": {
"type": "git",
"url": "https://github.com/Tauffer-Consulting/dash-cool-components.git"
},
"bugs": {
"url": "https://github.com/Tauffer-Consulting/dash-cool-components/issues"
},
"homepage": "https://github.com/Tauffer-Consulting/dash-cool-components",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve --config ./webpack.serve.config.js --open",
"dev": "webpack -w",
"validate-init": "python _validate_init.py",
"prepublishOnly": "npm run validate-init",
"build:js": "webpack --mode production",
"build:py_and_r": "dash-generate-components ./src/lib/components dash_cool_components -p package-info.json --r-prefix '' --jl-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_and_r",
"build:activated": "npm run build:js && npm run build:py_and_r-activated"
},
"author": "Luiz Tauffer, Vinicius Camozzato Vaz and Raul Rosá <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/luxon": "^1.24.4",
"assert": "^2.0.0",
"luxon": "^1.25.0",
"ramda": "^0.26.1",
"react-bootstrap": "^1.3.0",
"react-bootstrap-timezone-picker": "^2.0.1",
"react-datepicker": "^3.1.3",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-keyed-file-browser": "^1.9.0",
"react-tag-input": "^6.4.3",
"reactjs-tag-input": "^2.0.15",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.0.0",
"@types/react-datepicker": "^3.1.1",
"@types/styled-components": "^5.1.3",
"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.1.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-docgen": "^4.1.1",
"react-dom": "^16.13.1",
"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"
}
}