-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write '**/*.js'",
"lint": "eslint --ext .js ./",
"lint-fix": "eslint --fix --ext .js ./",
"fix": "npm run format && npm run lint-fix",
"test": "jest --no-cache",
"install:ci": "npm ci"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.1",
"@chakra-ui/react": "^1.0.3",
"@chakra-ui/theme": "^1.2.1",
"@chakra-ui/theme-tools": "^1.0.1",
"@emotion/react": "^11.1.2",
"@emotion/styled": "^11.0.0",
"framer-motion": "^2.9.5",
"next": "10.0.0",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.1.2",
"@types/jest": "^26.0.15",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "2.1.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}