-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 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
{
"name": "dash-yada",
"version": "0.0.1",
"description": "Dash Yada, an interactive dashboard assistant",
"repository": {
"type": "git",
"url": "git://github.com/BSd3v/dash-yada.git"
},
"bugs": {
"url": "https://github.com/BSd3v/dash-yada/issues"
},
"homepage": "https://github.com/BSd3v/dash-yada",
"author": "Bryan Schroeder <[email protected]>",
"license": "MIT",
"devDependencies": {
"prettier": "^2.8.8",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"npm-run-all": "^4.1.5",
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.5",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"rimraf": "^5.0.0"
},
"scripts": {
"package": "rimraf -rf dist build && python setup.py sdist bdist_wheel",
"private::format.black": "black .",
"private::format.eslint": "eslint --quiet --fix dash_yada",
"private::format.prettier": "prettier --write \"dash_yada/**/*.{js,jsx,ts,tsx}\"",
"format": "run-s private::format.*",
"publish": "run-s package && twine upload dist/*"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
},
"files": [
"/dash_yada/*"
]
}