-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.79 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
{
"name": "jesski-website",
"version": "1.0.0",
"proxy": "http://localhost:3000",
"scripts": {
"dev": "npx dotenv-run-script compile-games-from-csv && npm run cache-posts && npm run lint && next dev",
"build": "npm run cache-posts && next build",
"lint": "npx eslint \"./src/\" --fix",
"start": "next start",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install",
"cache-posts": "npx ts-node --skip-project ./src/scripts/PostCache.ts",
"compile-games-from-csv": "npx ts-node --skip-project ./src/scripts/GamesFromCSV.ts",
"update-front-matter": "npx ts-node --skip-project ./src/scripts/FrontmatterChanger.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run cache-posts && git add cache"
}
},
"dependencies": {
"@headlessui/react": "^2.1.5",
"@headlessui/tailwindcss": "^0.2.1",
"@mapbox/rehype-prism": "^0.7.0",
"@twurple/api": "^5.1.7",
"@twurple/auth": "^5.1.7",
"axios": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^16.4.5",
"dotenv-run-script": "^0.4.1",
"flat-cache": "^3.0.4",
"fs": "^0.0.1-security",
"fuzzy-search": "^3.2.1",
"gray-matter": "^4.0.3",
"net": "^1.0.2",
"next": "^14.2.5",
"next-seo": "^5.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-player": "^2.10.1",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"sort-array": "^4.1.5",
"styled-jsx-plugin-postcss": "^4.0.1",
"tailwindcss-textshadow": "^2.1.3",
"tls": "^0.0.1",
"unified": "^10.1.1",
"yaml": "^2.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.10",
"@types/cors": "^2.8.12",
"@types/flat-cache": "^2.0.0",
"@types/fuzzy-search": "^2.1.2",
"@types/node": "^17.0.15",
"@types/react": "^17.0.39",
"@types/react-js-pagination": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.16",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"fast-csv": "^4.3.6",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.41",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.18",
"typescript": "^4.5.5"
},
"license": "ISC"
}