-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
46 lines (46 loc) · 1.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
{
"name": "tinytapeout-website",
"version": "1.0.0",
"description": "https://www.tinytapeout.com",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/TinyTapeout/tinytapeout_www.git"
},
"keywords": [
"tinytapeout"
],
"author": "Uri Shaked",
"homepage": "https://www.tinytapeout.com",
"scripts": {
"dev": "wrangler pages dev public",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest --watch"
},
"dependencies": {
"@cloudflare/pages-plugin-vercel-og": "^0.1.2",
"markdown-it": "^14.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240712.0",
"@types/markdown-it": "^14.1.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --write"
],
"**/*.{js,css}": [
"prettier --write"
]
}
}