-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 2.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "john-wrights-personal-website",
"description": "A personal landing page and blog for John Wright Stanly",
"version": "0.0.1",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.14",
"aws-amplify": "^3.3.20",
"next": "12",
"next-sitemap": "^3.1.31",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^5.0.3",
"react-syntax-highlighter": "^15.4.3"
},
"devDependencies": {
"@types/gtag.js": "^0.0.7",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/shelljs": "^0.8.8",
"autoprefixer": "^10.2.5",
"env-cmd": "10.0.1",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-unused-imports": "^1.1.2",
"node-fetch": "^2.6.1",
"postcss": "^8.2.15",
"prettier": "^2.3.2",
"prompt-sync": "^4.2.0",
"shelljs": "^0.8.3",
"tailwindcss": "^2.1.2",
"typescript": "^4.2.2",
"typescript-json-schema": "^0.50.1"
},
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"lint": "next lint --fix",
"build": "next build && next-sitemap && next export",
"index-html": "node ./scripts/index_html",
"sync-s3": "env-cmd -e production node ./scripts/upload_bucket",
"compile-lambdas": "tsc -p backend/tsconfig.sam.json",
"generate-schema": "typescript-json-schema --required --refs false --noExtraProps -o ./backend/types.schema.json \"./lib/Types.d.ts\" \"*\"",
"sam-build": "env-cmd -e production node ./scripts/sam_build",
"sam-package": "env-cmd -e production node ./scripts/sam_package",
"sam-deploy": "env-cmd -e production node ./scripts/sam_deploy",
"deploy": "yarn run deploy:backend && yarn run deploy:frontend",
"deploy:backend": "yarn run generate-schema && yarn run compile-lambdas && yarn run sam-build && yarn run sam-deploy",
"deploy:frontend": "yarn run build && yarn run index-html && yarn run sync-s3",
"blog:get": "env-cmd -e production node ./scripts/blog_get_article",
"blog:post": "env-cmd -e production node ./scripts/blog_post_article"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}
}