-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
109 lines (109 loc) · 3.07 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "awesome-arcade",
"version": "0.1.0",
"description": "This is the source code for the Awesome Arcade website!",
"private": true,
"keywords": [
"react",
"bootstrap",
"website",
"gamedev",
"awesome",
"modules",
"libraries",
"extensions",
"nextjs",
"curated",
"arcade",
"useful",
"curated-list",
"makecode",
"awesome-extensions",
"useful-extensions",
"makecode-arcade",
"makecode-arcade-extensions",
"arcade-extensions"
],
"homepage": "https://github.com/UnsignedArduino/Awesome-Arcade",
"bugs": "https://github.com/UnsignedArduino/Awesome-Arcade/issues",
"license": "GPL-2.1-or-later",
"author": {
"name": "UnsignedArduino",
"email": "[email protected]",
"url": "https://github.com/UnsignedArduino"
},
"repository": {
"type": "git",
"url": "https://github.com/UnsignedArduino/Awesome-Arcade.git"
},
"scripts": {
"dev": "cmd /V /C \"set \"TINA_PUBLIC_IS_LOCAL=true\" && tinacms dev -c \"next dev\"\"",
"devLinux": "TINA_PUBLIC_IS_LOCAL=true tinacms dev -c \"next dev\"",
"build": "tinacms build && next build",
"start": "next start",
"test": "yarn run playwright test",
"lint": "next lint",
"writeLint": "next lint --fix",
"format": "yarn prettier --check .",
"writeFormat": "yarn prettier --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@codemirror/language": "6.10.3",
"@growthbook/growthbook-react": "^1.1.0",
"@popperjs/core": "2.11.8",
"@tippyjs/react": "^4.2.6",
"@types/bootstrap": "^5.2.10",
"@types/masonry-layout": "^4.2.8",
"@types/node": "^20.16.11",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/postgres": "^0.10.0",
"bootstrap": "5.3.3",
"bootstrap-icons": "^1.11.3",
"dompurify": "^3.1.6",
"feed": "^4.2.2",
"framer-motion": "^11.3.0",
"isomorphic-dompurify": "^2.13.0",
"masonry-layout": "^4.2.2",
"midifile-ts": "^1.5.1",
"next": "14.2.15",
"next-auth": "^4.24.7",
"nextjs-google-adsense": "^1.0.0",
"nextjs-google-analytics": "^2.3.3",
"nextjs-progressbar": "^0.0.16",
"node-cache": "^5.1.2",
"pg": "^8.12.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^10.0.5",
"rehype-katex": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"sass": "^1.77.7",
"scheduler": "^0.23.2",
"tinacms": "^2.2.9",
"tippy.js": "^6.3.7",
"unified": "^11.0.5"
},
"devDependencies": {
"@tinacms/cli": "^1.5.47",
"eslint": "^8.56.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "5.5.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}