-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.27 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
{
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets",
"fmt": "prettier . --write && eslint --fix",
"lint": "prettier . --check && eslint && tsc"
},
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@rails/activestorage": "7.2.200",
"@rails/ujs": "7.1.x",
"@sentry/browser": "^8.40.0",
"@ttskch/select2-bootstrap4-theme": "^1.5.2",
"admin-lte": "^3.2.0",
"bootstrap": "^4.6.0",
"datatables.net": "^1.13.6",
"datatables.net-bs4": "^3.2.2",
"esbuild": "^0.24.0",
"jquery": "^3.7.0",
"react": "^18.2.0",
"react-bootstrap": "^1.6.7",
"react-dom": "^18.2.0",
"select2": "^4.0.13"
},
"devDependencies": {
"@types/node": "^22.9.1",
"@types/rails__activestorage": "^7.0.1",
"@types/rails__ujs": "^6.0.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}