-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.79 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
{
"name": "app-name",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "jest --coverage",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"export": "next export",
"test": "jest",
"test:ci": "jest --coverage"
},
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"babel-jest": "^29.3.1",
"cors": "^2.8.5",
"eslint": "^8.27.0",
"js-cookie": "^3.0.1",
"next": "12.3.1",
"next-sitemap": "^3.1.30",
"prettier-plugin-organize-imports": "^3.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "2.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/babel__core": "^7.1.20",
"@types/cors": "^2.8.13",
"@types/jest": "^29.2.2",
"@types/js-cookie": "^3.0.2",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"autoprefixer": "^10.4.12",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss": "^8.4.31",
"tailwindcss": "^3.2.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}