forked from aws-amplify/learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "learn",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"pre-commit": "next lint"
},
"dependencies": {
"@aws-amplify/ui-react": "3.5",
"aws-amplify": "^4.3.34",
"mapbox-gl": "1.13.1",
"next": "^11.1.3",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.3",
"react-modal": "^3.15.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-external-links": "^1.0.1"
},
"devDependencies": {
"@types/node": "17.0.41",
"@types/react": "^17.0.2",
"@types/react-copy-to-clipboard": "^5.0.3",
"@types/react-dom": "18.0.5",
"@types/react-modal": "^3.13.1",
"@types/react-syntax-highlighter": "^15.5.3",
"eslint": "^7.32.0",
"eslint-config-next": "12.1.6",
"husky": "^8.0.1",
"sass": "^1.52.3",
"typescript": "4.7.3"
},
"overrides": {
"shell-quote": "1.7.3",
"loader-utils": "2.0.4"
}
}