forked from rishiosaur/oss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "perfect-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8432",
"build": "next build",
"start": "next start",
"format": "prettier --single-quote --write './**/*'",
"format:check": "prettier --single-quote --check './**/*'",
"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"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.2",
"@chakra-ui/react": "^1.1.0",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@icons-pack/react-simple-icons": "^3.13.0",
"framer-motion": "^3.1.1",
"next": "10.0.0",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@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",
"prettier": "^2.1.1",
"prettier-eslint": "^11.0.0",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-push": "yarn run check:fix"
}
}
}