forked from ensdomains/ensdomains-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.11 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
{
"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": "npm run clean && gatsby build --prefix-paths && ./deploy-gh.sh",
"deploy:branch": "/bin/sh -c 'if [ \"$TRAVIS_BRANCH\" = \"master\" ]; then npm run deploy:ci; elif [ \"$TRAVIS_BRANCH\" = \"dev\" ]; then npm run deploy:dev; fi'",
"deploy:pr": "gatsby build && ./deploy.sh",
"deploy": "echo $TRAVIS_PULL_REQUEST && /bin/sh -c 'if [ \"$TRAVIS_PULL_REQUEST\" = \"false\" ]; then npm run deploy:branch; else npm run deploy:pr; fi'",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"i18n": "npx i18next-locales-sync -p en -s cn de es fr it ja ko nl pl pt ru vi -l ./locales/",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@ensdomains/thorin": "0.2.0",
"framer-motion": "^2.6.2",
"gatsby": "^3.0.3",
"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": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.7.0",
"react-intersection-observer": "^8.26.2",
"react-responsive-carousel": "^3.2.8",
"styled-components": "5.3.3"
},
"devDependencies": {
"i18next-locales-sync": "^1.1.2",
"prettier": "2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}