-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.32 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.32 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
{
"name": "colaboai-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"test": "jest --watch --passWithNoTests",
"test:ci": "jest --ci --passWithNoTests",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "yarn run check-format && yarn run check-lint && yarn run check-types && yarn run build",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.9.2",
"@tanstack/react-query": "^4.0.8",
"@types/react-lottie": "^1.2.6",
"@types/react-responsive": "^8.0.5",
"axios": "^0.27.2",
"file-loader": "^6.2.0",
"next": "^12.2.2",
"next-i18next": "^11.2.2",
"next-seo": "^5.5.0",
"next-sitemap": "^3.1.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-h5-audio-player": "^3.8.6",
"react-hot-toast": "^2.3.0",
"react-icons": "^4.4.0",
"react-lottie": "^1.2.3",
"react-responsive": "^9.0.0",
"recoil": "^0.7.4",
"sass": "^1.53.0"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^4.2.3",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/node": "18.0.6",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.3",
"eslint": "^8.20.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jest": "^28.1.3",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "4.7.4"
}
}