-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.37 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
{
"name": "banquet",
"version": "0.1.1",
"license": "MIT",
"author": "Timothy Merritt",
"description": "A gourmet Next.js starter + boilerplate",
"repository": {
"type": "git",
"url": "git+https://github.com/timmybytes/banquet.git"
},
"bugs": {
"url": "https://github.com/timmybytes/banquet/issues"
},
"homepage": "https://banquet-starter.netlify.app",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --config jest.config.js",
"test:changed": "jest --config jest.config.js -o",
"test:watch": "yarn test --watch",
"bake": "plop",
"bake-component": "plop Component _",
"bake-page": "plop Page _",
"prepare": "husky install",
"format": "prettier --write './{src,templates}/**/*'",
"lint": "eslint '{src,templates}/**/*.{js,jsx,ts,tsx}'",
"lint-fix": "yarn lint --fix",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.7",
"@chakra-ui/system": "^1.12.0",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@fontsource/inter": "^4.5.7",
"@fontsource/playfair-display": "^4.5.6",
"framer-motion": "^6.2.8",
"next": ">=14.2.10",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-icons": "^4.2.0",
"react-jss": "^10.9.0",
"sass": "^1.49.11"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"eslint": "^8.12.0",
"eslint-config-next": "^12.1.4",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"lint-staged": ">=12.3.7",
"plop": "^3.0.5",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
},
"resolutions": {
"@types/react": "17.0.15",
"@types/react-dom": "18.0.0"
},
"lint-staged": {
"**/*.(js|ts|tsx)": [
"eslint --fix"
],
"**/*.(js|json|ts|tsx)": [
"prettier --write"
]
}
}