-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.75 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.75 KB
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
{
"name": "gatsby-starter-hello-world",
"description": "Gatsby hello world starter",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"serve": "gatsby serve",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.{ts,tsx,md}\"",
"lint": "tslint 'src/**/*.{ts,tsx}' -p tsconfig.json",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js",
"test": "npm run type-check && npm run lint",
"type-check": "tsc"
},
"dependencies": {
"emotion": "^10.0.1",
"emotion-server": "^10.0.1",
"gatsby": "^2.0.33",
"gatsby-plugin-canonical-urls": "^2.0.8",
"gatsby-plugin-emotion": "^2.0.7",
"gatsby-plugin-google-analytics": "^2.0.8",
"gatsby-plugin-manifest": "^2.0.11",
"gatsby-plugin-offline": "^2.0.18",
"gatsby-plugin-react-helmet": "^3.0.4",
"gatsby-plugin-sitemap": "^2.0.3",
"gatsby-plugin-typescript": "^2.0.2",
"gatsby-source-contentful": "^2.0.16",
"gatsby-transformer-remark": "^2.1.15",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-emotion": "^10.0.0",
"react-helmet": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@types/node": "^10.12.11",
"@types/react": "^16.7.11",
"@types/react-dom": "^16.0.11",
"@types/react-helmet": "^5.0.7",
"babel-loader": "^8.0.4",
"prettier": "^1.15.3",
"tailwind.macro": "^0.5.10",
"tailwindcss": "^0.7.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.1"
}
}