-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.08 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "next-startbootstrap-agency",
"version": "0.1.0",
"packageManager": "pnpm@9.4.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "run-p dev:*",
"dev:next": "next dev",
"dev:css": "unocss 'src/**/*.tsx' --out-file=src/styles/uno.css --watch",
"css": "unocss 'src/**/*.tsx' --out-file=src/styles/uno.css",
"build": "pnpm css && next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"e2e": "playwright test",
"e2e:upd": "playwright test --update-snapshots",
"e2e:report": "playwright show-report",
"e2e:docker": "docker-compose build && docker-compose up"
},
"dependencies": {
"clsx": "^2.0.0",
"next": "^13.5.7",
"react": "^18.3.1",
"react-bootstrap": "^2.7.4",
"react-dom": "^18.3.1",
"react-scroll": "^1.8.9",
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@iconify-json/ant-design": "^1.1.5",
"@iconify-json/entypo-social": "^1.1.4",
"@iconify-json/fa": "^1.1.4",
"@iconify-json/fa-brands": "^1.1.4",
"@playwright/test": "^1.33.0",
"@popperjs/core": "^2.11.7",
"@types/node": "^20.11.25",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/react-scroll": "^1.8.7",
"@types/throttle-debounce": "^5.0.0",
"@unocss/cli": "^0.51.8",
"@unocss/preset-attributify": "^0.51.8",
"@unocss/preset-uno": "^0.51.8",
"@unocss/preset-web-fonts": "^0.51.8",
"@unocss/reset": "^0.51.8",
"@web-configs/eslint-plugin": "^0.5.2",
"@web-configs/prettier": "^0.1.2",
"@web-configs/typescript": "^0.2.2",
"bootstrap": "^5.2.3",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.2",
"next-pwa": "^5.6.0",
"npm-run-all2": "^6.1.2",
"playwright": "^1.33.0",
"prettier": "^3.3.3",
"sass": "^1.62.1",
"sharp": "^0.32.1",
"typescript": "^5.1.3",
"unocss": "^0.51.8",
"vite": "^5.1.5"
},
"prettier": "@web-configs/prettier",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vite": "^4.0.0"
}
}
}
}