-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.37 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
{
"name": "frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node ./node_modules/next/dist/bin/next dev",
"build": "next build",
"start": "node ./node_modules/next/dist/bin/next start -p 3000",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnar-rengar/frontend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gnar-rengar/frontend/issues"
},
"homepage": "https://github.com/gnar-rengar/frontend#readme",
"dependencies": {
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.9.3",
"axios": "^0.27.2",
"dayjs": "^1.11.3",
"emotion-reset": "^3.0.1",
"js-cookie": "^3.0.1",
"next": "^12.2.0",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.32.2",
"react-intersection-observer": "^9.4.0",
"react-query": "^3.39.1",
"recoil": "^0.7.3-alpha.2",
"sharp": "^0.30.7",
"socket.io-client": "^4.5.1",
"swiper": "^8.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.2",
"@emotion/jest": "^11.9.3",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^26.0.14 || ^27.0.0",
"@types/js-cookie": "^3.0.2",
"@types/node": "^17.0.36",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/socket.io-client": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"babel-jest": "^28.1.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"msw": "^0.42.3",
"prettier": "2.6.2",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.0",
"typescript": "^4.7.2"
},
"msw": {
"workerDirectory": "public"
}
}