-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "npm-dependency-check",
"version": "2.1.0",
"type": "module",
"homepage": "https://wazer-adrien.github.io/npm-dependency-check",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier --write src",
"predeploy": "cross-env VITE_BASE_URL=/npm-dependency-check npm run build",
"deploy": "gh-pages -d dist"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"files": [
"dist"
],
"dependencies": {
"@reacticons/ionicons": "^7.1.0",
"@reduxjs/toolkit": "^2.2.1",
"bootstrap": "^5.3.3",
"query-registry": "^2.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"react-select": "^5.8.0",
"reactstrap": "^9.2.2",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/react-redux": "^7.1.33",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"gh-pages": "^6.1.1",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"typescript": "^5.4.2",
"vite": "^5.1.6"
}
}