-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 2.07 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
{
"name": "dash-data-table",
"version": "0.0.6",
"description": "Project Description",
"main": "build/index.js",
"scripts": {
"start": "npm run build && FLASK_APP=docs.view:server flask run",
"build:jl": "dash-generate-components ./src/components dash_data_table -p package-info.json --jl-prefix 'ddt' && npm run build:clean-files",
"build:js": "webpack --mode production",
"build:py": "dash-generate-components ./src/components dash_data_table -p package-info.json && npm run build:copy-files && npm run build:clean-files && mv dash_data_table/components/_imports_.py dash_data_table/components/__init__.py",
"build:r": "dash-generate-components ./src/components dash_data_table -p package-info.json --r-prefix 'ddt' && npm run build:clean-files",
"build:copy-files": "python cli.py copy-files --excluded '__init__.py' dash_data_table dash_data_table/components",
"build:clean-files": "python cli.py clean-folder --excluded '__init__.py' dash_data_table",
"build": "npm run build:js && npm run build:py && npm run build:r && npm run build:jl"
},
"author": "Jakob Jul Elben <elbenjakobjul@gmail.com>",
"license": "MIT",
"dependencies": {
"ramda": "^0.26.1",
"react-data-table-component": "^7.0.0-alpha-8",
"styled-components": "^5.2.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",
"datatables.net": "^1.10.23",
"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.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"
}
}