-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.31 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "dives-frontend",
"version": "0.1.0",
"author": "Dives (https://github.com/dives-app)",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev -p 5000",
"build-start": "yarn build:dev && yarn start:dev -p 5000",
"build:dev": "env-cmd -f .env.development next build",
"start:dev": "env-cmd -f .env.development next start",
"build": "env-cmd -f .env.staging next build",
"start": "env-cmd -f .env.staging next start",
"analyze": "ANALYZE=true env-cmd -f .env.staging next build",
"as": "yarn analyze && hs .next/analyze/",
"gen": "graphql-codegen --config codegen.yml",
"lint": "prettier --check . && eslint .",
"clean": "rimraf node_modules .next"
},
"dependencies": {
"@apollo/client": "^3.3.19",
"@babel/core": "^7.14.3",
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.3",
"@chakra-ui/system": "^1.6.7",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@types/node": "^14.14.37",
"@types/react": "^17.0.9",
"env-cmd": "^10.1.0",
"framer-motion": "^4.1.17",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"lodash": "^4.17.21",
"next": "10.2.3",
"next-compose-plugins": "^2.2.1",
"next-seo": "^4.24.0",
"next-translate": "1.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.7.1",
"typescript": "^4.3.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.5",
"@graphql-codegen/typescript": "1.22.1",
"@graphql-codegen/typescript-operations": "1.18.0",
"@graphql-codegen/typescript-react-apollo": "^2.2.5",
"@next/bundle-analyzer": "^10.2.3",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"lint-staged": ">=11.0.0",
"prettier": "2.3.0",
"rimraf": "^3.0.2",
"simple-git-hooks": ">=2.4.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md,json}": "prettier --write"
}
}