-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"proxy": "http://ec2-15-164-169-134.ap-northeast-2.compute.amazonaws.com:8080",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"deploy": "aws s3 sync .out s3://sparcs-2023-startup-hackathon-m-2 --profile=sample-deploy-s3"
},
"dependencies": {
"@next/font": "13.1.2",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/styled-components": "^5.1.26",
"axios": "^1.2.5",
"eslint": "^8.32.0",
"eslint-config-next": "13.1.2",
"framer-motion": "^8.5.4",
"next": "13.1.2",
"next-optimized-images": "^2.6.2",
"next-seo": "^5.15.0",
"popmotion": "^11.0.5",
"react": "18.2.0",
"react-aws-s3": "^1.5.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.6",
"styled-reset": "^4.4.5",
"typescript": "4.9.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-plugin-styled-components": "^2.0.7",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.3"
}
}