-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) Β· 1.29 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": "js-tools",
"license": "MIT",
"version": "1.5.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:prod": "tsc && vite build --base=/tools/",
"preview": "vite preview",
"lint": "eslint ./src/**/*.{js,jsx,ts,tsx}",
"lint:fix": "eslint --fix ./src/**/*.{js,jsx,ts,tsx}",
"test": "cypress run",
"release:prep": "node release.js"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@tanstack/react-table": "^8.9.3",
"@types/bootstrap": "^5.2.6",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"bootstrap": "^5.3.1",
"bootstrap-icons": "^1.10.5",
"csv-parse": "^5.5.0",
"csv-stringify": "^6.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.2",
"sass": "^1.64.2",
"typescript": "<5.1.0",
"vite": "^4.4.8",
"zustand": "^4.4.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"cypress": "^12.17.3",
"eslint": "^8.48.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"nanospinner": "^1.1.0"
}
}