-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.61 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": "nameko-site",
"author": "Kyle Stewart <[email protected]>",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@rebass/grid": "^6.0.0-4",
"@types/react": "^16.0.40",
"emotion": "^8.0.8",
"emotion-server": "^8.0.8",
"feather-icons": "^4.7.3",
"gatsby": "^1.9.76",
"gatsby-image": "^1.0.13",
"gatsby-link": "^1.6.21",
"gatsby-plugin-emotion": "^1.1.8",
"gatsby-plugin-google-analytics": "^1.0.31",
"gatsby-plugin-offline": "^1.0.10",
"gatsby-plugin-react-helmet": "^2.0.6",
"gatsby-plugin-react-next": "^1.0.4",
"gatsby-plugin-sharp": "^1.6.9",
"gatsby-plugin-typescript": "^1.4.17",
"gatsby-plugin-typography": "^1.7.18",
"gatsby-remark-prismjs": "^2.0.2",
"gatsby-source-filesystem": "^1.5.5",
"gatsby-transformer-json": "^1.0.11",
"gatsby-transformer-remark": "^1.7.17",
"gatsby-transformer-sharp": "^1.6.10",
"gatsby-transformer-yaml": "^1.5.11",
"normalize.css": "^7.0.0",
"prismjs": "^1.14.0",
"prop-types": "^15.6.0",
"react-emotion": "^8.0.8",
"react-helmet": "^5.2.0",
"react-slick": "^0.23.1",
"typescript": "^2.7.2",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"gh-pages": "^1.1.0",
"prettier": "^1.13.5"
},
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"prettier": "prettier --write 'src/**/*.{ts,tsx,js}'",
"lint": "yarn run lint-types && yarn run lint-prettier",
"lint-prettier": "prettier -l 'src/**/*.{ts,tsx,js}'",
"lint-types": "tsc --noEmit",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
}
}