-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.14 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": "ladder-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint --fix '**/*.{ts,tsx,js,jsx}'",
"commit": "cz-customizable",
"postinstall": "husky install",
"type": "tsc --noEmit",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@stomp/stompjs": "^6.1.2",
"axios": "^0.27.2",
"dayjs": "^1.11.5",
"framer-motion": "^6.3.11",
"immer": "^9.0.15",
"next": "^12.2.5",
"node-vibrant": "^3.1.6",
"react": "18.1.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "18.1.0",
"react-lottie": "^1.2.3",
"react-lottie-player": "^1.4.3",
"react-qrcode-logo": "^2.7.0",
"react-query": "^3.39.1",
"react-slick": "^0.29.0",
"react-youtube": "^9.0.2",
"recoil": "^0.7.4",
"slick-carousel": "^1.8.1",
"sockjs-client": "^1.6.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/gtag.js": "^0.0.11",
"@types/jest": "^28.1.3",
"@types/node": "17.0.38",
"@types/react": "18.0.10",
"@types/react-dom": "18.0.5",
"@types/react-lottie": "^1.2.6",
"@types/react-slick": "^0.23.10",
"@types/sockjs-client": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"cz-customizable": "6.9.0",
"eslint": "8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"typescript": "4.7.2"
}
}