-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 820 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 820 Bytes
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
{
"name": "tomchentw.com",
"version": "0.1.0",
"private": true,
"lint-staged": {
"*.{png,jpeg,jpg,gif,svg}": "imagemin-lint-staged",
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"framer-motion": "^7.3.5",
"next": "^12.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@svgr/webpack": "^6.2.1",
"eslint": "^8.23.1",
"eslint-config-next": "^12.3.0",
"husky": "^8.0.1",
"imagemin-lint-staged": "^0.5.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1"
}
}