-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.19 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
{
"name": "ssafy-live",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"jest": "jest",
"test": "jest --watch --passWithNoTests",
"test:pre": "jest --silent --o --passWithNoTests",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"packageManager": "^pnpm@8.6.12",
"dependencies": {
"@emotion-icons/material": "^3.14.0",
"@emotion-icons/material-outlined": "^3.14.0",
"@emotion-icons/material-rounded": "^3.14.0",
"@emotion/babel-preset-css-prop": "^11.11.0",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "20.5.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"emotion-normalize": "^11.0.1",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"next": "13.4.19",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"typescript": "5.2.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-jest": "^29.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json, md, yaml}": [
"prettier --write"
]
}
}