-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 2.74 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ygtang-client",
"version": "1.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"httpsdev": "node httpsDevServer.js",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"export": "next export",
"lint": "next lint",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"test": "jest --coverage",
"test:watch": "jest --watch",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@next/env": "^14.1.0",
"@sentry/nextjs": "^7.99.0",
"@tanstack/react-query": "^4",
"axios": "^1.6.7",
"framer-motion": "^11.0.3",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"next": "14.1.0",
"next-sitemap": "^4.2.3",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-calendar": "4.0.0",
"react-dom": "18.2.0",
"react-quick-pinch-zoom": "^5.1.0",
"recoil": "^0.7.7",
"tslib": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/jest": "^11.11.0",
"@next/bundle-analyzer": "^14.1.0",
"@tanstack/react-query-devtools": "^5.18.1",
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.14.202",
"@types/mixpanel-browser": "^2.48.1",
"@types/node": "^20.11.16",
"@types/react": "^18.2.52",
"@types/react-calendar": "^3.9.0",
"@types/react-dom": "18.2.18",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"compression-webpack-plugin": "^11.0.0",
"cypress": "13.6.4",
"esbuild": "^0.20.0",
"esbuild-jest": "^0.5.0",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-ygt-rules": "file:./eslint",
"husky": "^9.0.10",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.1",
"next-router-mock": "^0.9.11",
"prettier": "^3.2.4",
"typescript": "5.3.3"
},
"packageManager": "[email protected]"
}