generated from rishiosaur/perfect-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.98 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
{
"name": "perfect-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p ${PORT-3000}",
"format": "prettier --single-quote --write './**/*.{js,ts,tsx,jsx,json}'",
"format:check": "prettier --single-quote --check './**/*.{js,ts,tsx,jsx,json}'",
"lint": "eslint \"./**/*.{js,ts,tsx,jsx}\" --quiet --fix",
"lint:check": "eslint \"./**/*.{js,ts,tsx,jsx}\" --quiet",
"check": "yarn run format:check && yarn run lint:check",
"check:fix": "yarn run format && yarn run lint",
"serve": "yarn run build && yarn run start"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.5",
"@chakra-ui/react": "^1.3.3",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@octokit/rest": "^18.3.5",
"fast-xml-parser": "^3.18.0",
"framer-motion": "^3.6.2",
"next": "^10.1.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "^4.2.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^3.1.0",
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-wesbos": "^1.0.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "1.7.0",
"husky": "^4.3.0",
"netlify-plugin-cache-nextjs": "^1.5.2",
"prettier": "^2.1.1",
"prettier-eslint": "^11.0.0",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-push": "yarn run check:fix"
}
}
}