-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.66 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
{
"name": "afew.games",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky",
"dev": "TINA_PUBLIC_IS_LOCAL=true tinacms dev -c \"next\"",
"build": "tinacms build && next build",
"start": "tinacms build && next start",
"export": "npm run build && next export",
"prettier:check": "prettier --config .prettierrc.json --check",
"prettier:write": "prettier --config .prettierrc.json --write",
"eslint:check": "eslint -c .eslintrc.json",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geotrev/afew.games.git"
},
"keywords": [],
"author": "George Treviranus <[email protected]> (https://geotrev.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/geotrev/afew.games/issues"
},
"homepage": "https://github.com/geotrev/afew.games#readme",
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@octokit/core": "^6.0.0",
"@tailwindcss/typography": "^0.5.10",
"classnames": "^2.5.1",
"crypto-js": "^4.2.0",
"daisyui": "^4.4.24",
"date-fns": "^4.0.0",
"gray-matter": "^4.0.3",
"lodash-es": "^4.17.21",
"lucide-react": "^0.447.0",
"next": "^14.0.4",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-tooltip": "^5.25.1",
"server-only": "^0.0.1",
"tinacms": "^2.2.8",
"xss": "^1.0.14"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@netlify/plugin-nextjs": "^5.0.0",
"@tinacms/cli": "^1.6.8",
"@types/glob": "^8.1.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.11",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@types/react-google-recaptcha": "^2.1.8",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.13.1",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"path": "^0.12.7",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.6.0",
"prop-types": "^15.8.1",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"src/**/*.js": [
"npm run prettier:check",
"npm run eslint:check"
],
"*.(json|scss)": [
"npm run prettier:write"
]
}
}