-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "gdd450buildssite",
"version": "2.0.0",
"description": "A site to hold and display development builds of GDD 450 games.",
"main": "src/main.jsx",
"type": "module",
"scripts": {
"client": "node build.js",
"clientdev": "node build.js dev",
"clientdevsrv": "node build.js dev serve",
"scrape": "node --experimental-json-modules scraper/gameInfoScraper.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Games",
"gdd",
"website"
],
"author": "Seth Berrier",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.19",
"@octokit/rest": "^20.0.2",
"atob": "^2.1.2",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"esbuild": "^0.19.8",
"highlight.js": "^11.3.1",
"markdown-to-jsx": "^7.1.3",
"query-string": "^8.1.0",
"react-cookie": "^6.1.1",
"react-lazylog": "^4.5.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-syntax-import-assertions": "^7.23.3",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}