-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 KB
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
{
"name": "aoe-unit-counters",
"version": "1.0.0",
"private": true,
"keywords": [
"age-of-empires",
"aoe",
"nextjs",
"chakra-ui",
"react"
],
"homepage": "https://github.com/lukethacoder/age-of-empires-unit-counters",
"repository": "github:lukethacoder/age-of-empires-unit-counters",
"author": {
"name": "Luke Secomb",
"email": "dev@lukesecomb.digital",
"url": "https://lukesecomb.digital"
},
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.5",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@mantine/core": "^3.6.11",
"@mantine/hooks": "^3.6.11",
"@mantine/next": "^3.6.11",
"framer-motion": "^6.2.8",
"fuse.js": "^6.5.3",
"next": "12.1.0",
"next-pwa": "^5.4.4",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"typescript": "4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}