forked from RetroAchievements/RAWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.02 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
55
{
"name": "raweb",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint public/js resources/js postcss.config.js tailwind.config.js vite.config.ts --cache",
"fix": "npm run fix:eslint",
"fix:eslint": "eslint public/js resources/js postcss.config.js tailwind.config.js vite.config.ts --fix",
"test": "vitest run",
"test:watch": "vitest",
"analyze": "cross-env ANALYZE=true npm run prod",
"apidoc": "npm run apidoc:connect",
"apidoc:connect": "apidoc -i src/Connect/ -c docs/src/connect-api -t docs/src/connect-api/template -o docs/dist/api/connect"
},
"dependencies": {
"@alpinejs/focus": "^3.12.3",
"@floating-ui/dom": "^1.5.1",
"alpinejs": "^3.12.2",
"js-cookie": "^3.0.5",
"ua-parser-js": "^1.0.35"
},
"devDependencies": {
"@defstudio/vite-livewire-plugin": "^1.1.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/alpinejs": "^3.7.2",
"@types/alpinejs__focus": "^3.10.0",
"@types/js-cookie": "^3.0.3",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"laravel-echo": "^1.15.1",
"laravel-vite-plugin": "^0.7.8",
"postcss": "^8.4.31",
"pusher-js": "^8.2.0",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"engines": {
"node": "20.x",
"npm": ">=8.18.0"
}
}