-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.22 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.22 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "Commerce_hyp",
"version": "0.1.0",
"private": true,
"description": "Simple project that shows the usage of Next.js with TypeScript",
"author": "TOKTOKHAN.DEV<dev@toktokhan.dev>",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install && node_modules/.bin/ls-engines",
"gen:theme-typings": "chakra-cli tokens src/styles/theme",
"tokript": "tokript",
"gen:source": "tokript gen:source",
"gen:icon": "tokript gen:icon",
"gen:img": "tokript gen:img",
"gen:font": "tokript gen:font",
"w:start": "tokript w:start",
"commit": "tokript commit",
"open:theme-typings": "code -r node_modules/@chakra-ui/styled-system/dist/declarations/src/theming.types.d.ts",
"postinstall": "yarn run gen:theme-typings",
"test": "jest --watch",
"lint": "tsc --noEmit && eslint --fix",
"clean-up": "node src/scripts/remove-unnecessary.js"
},
"dependencies": {
"@chakra-ui/react": "^2.1.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@hookform/resolvers": "^2.8.8",
"@reduxjs/toolkit": "^1.3.6",
"@tanstack/react-query": "^4.2.3",
"@tanstack/react-query-devtools": "^4.2.3",
"@types/react-syntax-highlighter": "^13.5.2",
"axios": "^0.26.0",
"chakra-react-select": "^3.3.1",
"constate": "^3.3.2",
"dayjs": "^1.10.6",
"framer-motion": "^4",
"lodash": "^4.17.21",
"ls-engines": "^0.7.0",
"next": "^12.1.6",
"react": "^18.1.0",
"react-cookie": "^4.1.1",
"react-datepicker": "^4.8.0",
"react-device-detect": "^2.1.2",
"react-dom": "^18.1.0",
"react-hook-form": "^7.20.2",
"react-redux": "^7.2.0",
"react-select": "^5.2.1",
"react-syntax-highlighter": "^15.5.0",
"tinycolor2": "^1.4.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@chakra-ui/cli": "^1.5.0",
"@testing-library/cypress": "^8.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.1",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/node": "^17.0.18",
"@types/react": "^17.0.3",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^17.0.3",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-jest": "^27.2.4",
"dotenv": "^16.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.4",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.4",
"lint-staged": "^10.5.4",
"minimist": "^1.2.6",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"tokript": "^0.9.4",
"typescript": "^4.2.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"msw": {
"workerDirectory": "public"
},
"engines": {
"node": ">= 16.0.0",
"npm": ">= 7.10.0",
"yarn": ">= 1.22.17"
},
"os": [
"darwin",
"win64",
"linux"
],
"engineStrict": true
}