-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1019 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1019 Bytes
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
{
"private": true,
"name": "bdportal",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"build-based": "vite build --base=/bdportal/",
"build-dev-based": "vite build --base=/dev/bdportal/",
"build-devel-based": "vite build --base=/devel/bdportal/",
"preview": "vite preview",
"lint": "eslint src"
},
"eslintConfig": {
"extends": "preact"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"@preact/preset-vite": "^2.1.7",
"eslint": "^8.9.0",
"eslint-config-preact": "^1.3.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-react": "^7.28.0",
"vite": "^2.8.6"
},
"dependencies": {
"0h": "^0.20.2202664",
"axios": "^0.31.0",
"bootstrap": "^4.6.1",
"fflate": "^0.7.3",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"preact": "^10.1.0",
"reactstrap": "^8.10.1"
},
"browserslist": [
"defaults",
"IE >= 11",
"maintained node versions"
]
}