-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "web-a-front",
"version": "0.0.1",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"type-check": "tsc",
"clear": "rm -rf .serverless && rm -rf .serverless_nextjs",
"deploy:dev": "yarn run clear && STAGE=dev serverless --verbose",
"deploy:prod": "yarn run clear && STAGE=prod serverless --verbose",
"lint": "eslint --max-warnings 0 \"**/*.{ts,tsx}\""
},
"dependencies": {
"axios": "^0.21.1",
"dayjs": "^1.10.7",
"debounce": "^1.2.1",
"next": "11.0.1",
"next-i18next": "^8.7.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"recoil": "^0.3.1",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/debounce": "^1.2.0",
"@types/jest": "^26.0.24",
"@types/react": "17.0.14",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.30.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.8.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^27.0.6",
"jest-dom": "^4.0.0",
"jest-styled-components": "^7.0.5",
"prettier": "^2.3.2",
"react-is": "^17.0.2",
"serverless": "^2.55.0",
"typescript": "4.3.5"
}
}