-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.94 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_pdf",
"version": "0.0.1",
"description": "pdf for Dash",
"repository": {
"type": "git",
"url": "git://github.com/ploomber/dash-pdf.git"
},
"bugs": {
"url": "https://github.com/ploomber/dash-pdf/issues"
},
"homepage": "https://github.com/ploomber/dash-pdf",
"main": "build/index.js",
"scripts": {
"start": "webpack serve --config ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"prepublishOnly": "npm run validate-init",
"build:js": "webpack --mode production",
"build:backends": "dash-generate-components ./src/lib/components dash_pdf -p package-info.json --r-prefix '' --jl-prefix '' --ignore \\.test\\.",
"build:backends-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:backends)",
"build": "npm run build:js && npm run build:backends",
"build:activated": "npm run build:js && npm run build:backends-activated"
},
"author": "Ploomber Inc. <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"ramda": "^0.26.1",
"react-pdf": "^9.1.1"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.22.2",
"@babel/preset-react": "^7.22.3",
"@plotly/dash-component-plugins": "^1.2.3",
"@plotly/webpack-dash-dynamic-import": "^1.2.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"copyfiles": "^2.1.1",
"css-loader": "^6.8.1",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-docgen": "^5.4.3",
"react-dom": "^18.2.0",
"style-loader": "^3.3.3",
"styled-jsx": "^5.1.6",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}