-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1.35 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
{
"name": "danielhollcraft.com",
"version": "1.0.1",
"description": "Daniel Hollcraft's Website",
"main": "index.js",
"scripts": {
"setup": "cd ui && yarn && cd ../api && yarn",
"static:deploy:prod": "./ui/deploy/scripts/deploy_static_files.sh prod",
"static:destroy:prod": "./ui/deploy/scripts/delete_static_files.sh prod",
"static:destroy:local": "rm -rf ui/public",
"static:build": "cd ui && yarn build && cd ../..",
"static:build:deploy": "yarn static:build && yarn static:deploy:prod",
"ui:local": "cd ui && yarn develop",
"ui:local:serve": "cd ui && yarn serve",
"ui:deploy:prod": "cd ui && sls deploy -s prod && cd ..",
"api:deploy:prod": "cd api && sls deploy -s prod && cd ..",
"api:local": "cd api && sls offline && cd .."
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielbh/danielhollcraft.com.git"
},
"author": "Daniel Hollcraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielbh/danielhollcraft.com/issues"
},
"homepage": "https://github.com/danielbh/danielhollcraft.com#readme",
"dependencies": {}
}