forked from ensdomains/ensdomains-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.9 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
{
"name": "ens.domains-v2",
"private": true,
"description": "ENS Domains homepage V2",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy:dev": "gatsby build && cd public && surge . --domain ensdomains.surge.sh",
"deploy:live": "gatsby build --prefix-paths && node node_modules/gh-pages/bin/gh-pages-clean && gh-pages -d public",
"deploy:ci": "yarn clean && gatsby build --prefix-paths && ./deploy-gh.sh",
"deploy:branch": "/bin/sh -c 'if [ \"$TRAVIS_BRANCH\" = \"master\" ]; then yarn deploy:ci; elif [ \"$TRAVIS_BRANCH\" = \"dev\" ]; then yarn deploy:dev; fi'",
"deploy:pr": "gatsby build && ./deploy.sh",
"deploy": "echo $TRAVIS_PULL_REQUEST && /bin/sh -c 'if [ \"$TRAVIS_PULL_REQUEST\" = \"false\" ]; then yarn deploy:branch; else yarn deploy:pr; fi'",
"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"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"framer-motion": "^2.6.2",
"gatsby": "^2.22.15",
"gatsby-plugin-emotion": "^4.3.4",
"gatsby-plugin-google-analytics": "^2.3.4",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-react-i18next": "^0.0.25",
"gh-pages": "^3.1.0",
"i18next": "^19.6.3",
"normalize.css": "^8.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-i18next": "^11.7.0",
"react-intersection-observer": "^8.26.2",
"react-responsive-carousel": "^3.2.8"
},
"devDependencies": {
"prettier": "2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}