-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.56 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
{
"name": "dash_signature",
"version": "0.1.9",
"author": {
"name": "Coulton Fraser",
"email": "[email protected]"
},
"license": "MIT",
"description": "Dash signature component for signing documents",
"main": "build/index.js",
"scripts": {
"css": "NODE_ENV=production npx tailwindcss -i ./src/lib/css/input.css -o ./src/lib/css/output.css",
"start": "webpack serve --config ./webpack.serve.config.js --open",
"clean": "find ./dash_signature -type f ! -name '__init__.py' -delete",
"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_signature -p package-info.json --ignore \\.test\\.",
"build:backends-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:backends)",
"build": "npm run clean && npm run css && npm run build:js && npm run build:backends",
"bundle": "NODE_ENV=production npm run build && python setup.py sdist bdist_wheel",
"build:activated": "npm run build:js && npm run build:backends-activated",
"rebuild": "npm run build && poetry install && python usage.py"
},
"dependencies": {
"@floating-ui/react": "^0.26.19",
"@headlessui/react": "^2.1.2",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-visually-hidden": "^1.1.0",
"ramda": "^0.26.1",
"signature_pad": "^5.0.1",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"es-check": "^7.1.1",
"esbuild-loader": "^4.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"prettier": "^3.2.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-docgen": "^5.4.3",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"style-loader": "^3.3.4",
"styled-jsx": "^5.1.2",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.0"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}