-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "twitter-amazon-dynamodb",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:docker": "docker build -t twitter-amazon-db .",
"start:docker": "docker run -d -p 3000:3000 twitter-amazon-dynamodb_nextjs",
"stop:docker": "docker stop $(docker ps -a -q)"
},
"dependencies": {
"@material-ui/core": "4.10.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.55",
"apexcharts": "^3.20.0",
"aws-sdk": "^2.888.0",
"axios": "^0.19.2",
"chartist": "0.10.1",
"chartist-plugin-tooltips-updated": "^0.1.3",
"classnames": "^2.3.1",
"csv-parser": "^3.0.0",
"date-fns": "^2.21.1",
"formik": "^2.1.4",
"history": "4.10.1",
"next": "10.1.3",
"perfect-scrollbar": "1.5.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-apexcharts": "^1.3.7",
"react-chartist": "0.14.3",
"react-dom": "17.0.2",
"react-google-maps": "9.4.5",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.1",
"react-swipeable-views": "0.13.9",
"swr": "^0.5.5",
"uuid": "^8.3.2",
"yup": "^0.29.1"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-shakacode": "^17.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"prettier": "^2.0.5",
"sass": "^1.26.8",
"url-loader": "^4.1.1"
}
}