-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "limbus-combat-guide",
"version": "0.1.0",
"private": true,
"scripts": {
"build:css": "tailwindcss -i src/app/styles/app.css -o public/styles/app.css",
"watch:css": "tailwindcss -i src/app/styles/app.css -o public/styles/app.css --watch",
"build": "npm run build:css & next build",
"dev": "concurrently \"npm run watch:css\" \"next dev\"",
"start": "npx serve@latest out",
"lint": "next lint"
},
"dependencies": {
"bootstrap": "^5.3.5",
"next": "^15.2.4",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"react": "^19.1.0",
"react-bootstrap": "^2.10.9",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/bootstrap": "^5.2.10",
"@types/node": "^20.17.30",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"eslint": "^9.24.0",
"eslint-config-next": "15.1.7",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
}
}