-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "bna-website",
"description": "peopleforbikes BNA website",
"version": "0.1.0",
"type": "module",
"private": true,
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.7",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"autoprefixer": "10.4.20",
"babel-plugin-react-compiler": "19.0.0-beta-55955c9-20241229",
"del-cli": "6.0.0",
"next": "15.1.3",
"postcss": "8.5.1",
"postcss-custom-media": "11.0.5",
"postcss-import": "16.1.0",
"postcss-media-minmax": "5.0.0",
"postcss-nesting": "13.0.1",
"typescript": "5.7.3"
},
"dependencies": {
"ajv": "8.17.1",
"ajv-errors": "3.0.0",
"ajv-formats": "3.0.1",
"next": "15.1.3",
"postgres": "3.4.5",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-error-boundary": "5.0.0",
"react-spinners": "0.15.0",
"zod": "3.24.1"
},
"scripts": {
"build": "pnpm exec next telemetry disable && next build --debug",
"compile": "tsc",
"deploy": "next start",
"lint": "npx eslint . --max-warnings 0 --report-unused-disable-directives",
"repack": "del node_modules .next pnpm-lock.yaml && pnpm install",
"start": "next dev --turbo"
}
}