-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.32 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
72
73
{
"name": "nextime-nextjs-chakra-ui-start",
"version": "0.8.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"clean": "rm -rf node_modules .next yarn.lock package-lock.json && yarn cache clean",
"build": "next build",
"start": "next start",
"lint": "eslint src --ext .tsx,.ts",
"lint:fix": "eslint src --ext .tsx,.ts --fix",
"precommit": "yarn lint",
"commit": "cz",
"prepush": "git diff HEAD --quiet && git fetch && yarn precommit && yarn && yarn test && yarn build",
"go": "yarn prepush && yarn dev",
"prepare": "husky install",
"postinstall": "husky install",
"codegen": "graphql-codegen",
"test": "jest"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@chakra-ui/react": "^2.3.1",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/open-sans": "^4.5.11",
"@fontsource/roboto": "^4.5.8",
"framer-motion": "^7.2.1",
"graphql": "^16.6.0",
"next": "12.2.5",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@graphql-codegen/cli": "^2.12.0",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-react-apollo": "^3.3.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.18",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.4",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}