-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 864 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 864 Bytes
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
{
"name": "warsaw-python-pizza",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/pythonpizza/warsaw.python.pizza",
"author": "Jake Balas <jake@balas.io>",
"license": "MIT",
"engines": {
"node": ">=18.17.1"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@opentelemetry/api": "^1.9.0",
"@theme-ui/components": "^0.16.2",
"date-fns": "^4.1.0",
"next": "13.5.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"theme-ui": "0.16.2"
},
"scripts": {
"dev": "next dev",
"lint-fix": "bun biome format --write && bun biome lint && tsc --noemit",
"build": "next build && touch ./out/.nojekyll",
"start": "next start"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/node": "^20.19.31",
"@types/react": "^18.3.27",
"typescript": "^5.9.3"
}
}