-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.57 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.57 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
48
{
"name": "coetools",
"private": false,
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && chmod -R 755 dist",
"build:watch": "vite build --watch",
"build:staging": "cross-env NODE_ENV=development vite build --mode development --outDir staging && chmod -R 755 staging",
"build:staging:watch": "cross-env NODE_ENV=development vite build --mode development --outDir staging --watch",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"postinstall": "composer install -d ./api"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@radix-ui/react-context-menu": "^2.2.1",
"@sentry/react": "^8.26.0",
"@tanstack/react-query": "^5.51.24",
"fuse.js": "^7.0.0",
"primereact": "^10.8.2",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"react-sortablejs": "^6.1.4",
"react-toastify": "^10.0.5",
"sortablejs": "^1.15.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"vite": "^5.4.1",
"vite-plugin-static-copy": "^1.0.6"
},
"engines": {
"node": ">= 14"
}
}