This repository has been archived by the owner on Dec 1, 2024. It is now read-only.
forked from bengladwell/inside-story
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.25 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
{
"name": "inside-story",
"private": true,
"description": "Video hosting on AWS with gated auth",
"version": "0.1.0",
"author": "Ben Gladwell <[email protected]>",
"dependencies": {
"aws-sdk": "^2.1062.0",
"dotenv": "^8.6.0",
"gatsby": "^2.32.13",
"gatsby-image": "^2.11.0",
"gatsby-plugin-canonical-urls": "^2.10.0",
"gatsby-plugin-lodash": "^3.10.0",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-s3": "^0.3.8",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-sharp": "^2.12.1",
"gatsby-transformer-yaml": "^2.11.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"modularscale-sass": "^3.0.10",
"node-sass": "^4.14.1",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-icons": "^4.3.1",
"video.js": "^7.17.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-standard": "^4.1.0",
"prettier": "^1.19.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "scripts/set_env && gatsby build",
"build_and_deploy": "scripts/set_env && gatsby build && scripts/deploy",
"develop": "scripts/set_env && gatsby develop",
"deploy": "scripts/deploy",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"stack:validate-template": "aws cloudformation validate-template --template-body file://lib/cloudformation.yml",
"stack:create": "scripts/create_stack.js",
"stack:status": "scripts/stack_status.sh",
"stack:delete": "scripts/destroy_stack.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}