-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.8 KB
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
{
"name": "dash_auth_plus",
"version": "0.0.2",
"scripts": {
"private::format.black": "black dash_auth_plus --exclude metadata_test.py",
"format": "run-s private::format.*",
"private::lint.black": "black dash_auth_plus --exclude metadata_test.py --check",
"private::lint.flake8": "flake8 dash_auth_plus --exclude=metadata_test.py",
"lint": "run-s private::lint.*",
"dist": "run-s lint && rimraf dist build && python setup.py sdist bdist_wheel",
"build:backends": "dash-generate-components ./src/ts/components dash_auth_plus_components -p package-info.json --jl-prefix 'components' --ignore \\.test\\.",
"build": "npm run build:js && npm run build:backends && npm run build:fix-n-copy && npm run build:cleanup",
"build:js": "webpack --mode production",
"build:fix-n-copy": "black dash_auth_plus_components/*.py && cpy dash_auth_plus_components/* dash_auth_plus/DashAuthComponents --flat",
"build:cleanup": "mv dash_auth_plus_components/package-info.json dash_auth_plus/ && rimraf dash_auth_plus_components"
},
"author": "Bryan Schroeder <bryan.ri.schroeder@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.5",
"@clerk/clerk-react": "^5.2.10",
"@clerk/themes": "^2.4.42",
"@types/ramda": "^0.30.1",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"babel-loader": "^9.1.3",
"cpy-cli": "^5.0.0",
"dash-extensions-js": "^0.0.8",
"npm-run-all": "4.1.5",
"ramda": "^0.30.1",
"react": "^18.3.1",
"react-docgen": "^5.4.0",
"react-dom": "^18.3.1",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.96.1",
"webpack-cli": "^6.0.1"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
},
"dependencies": {
"prop-types": "^15.8.1"
}
}