-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --config ./.prettierrc.js --write .",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@headlessui/react": "^1.6.5",
"@heroicons/react": "^1.0.6",
"mobx": "^6.6.1",
"mobx-react": "^7.5.1",
"moment": "^2.29.3",
"next": "latest",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-toastify": "^9.0.5",
"swr": "^1.3.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.2.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "14.2.0",
"@types/jest": "^28.1.3",
"@types/node": "17.0.35",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.18.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.2",
"ts-jest": "^28.0.5",
"typescript": "4.7.2"
}
}