-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (41 loc) · 859 Bytes
/
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
{
"name": "commcms",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@chakra-ui/react": "^1.8.3",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"framer-motion": "^6.2.6",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"he": "^1.2.0",
"next": "^12.3.4",
"next-mdx-remote": "^2.1.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"swr": "^1.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint '*/**/*.{js,jsx}' --fix"
]
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"trim": ">=0.0.3"
}
}