-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.28 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
71
72
73
74
{
"name": "gatsby-starter-typescript-plus",
"description": "A starter kit for TypeScript-based Gatsby projects with sensible defaults.",
"version": "1.0.0",
"private": true,
"author": "Resi Respati <[email protected]>",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"dev": "gatsby develop",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"start": "npm run dev",
"test": "npm run type-check && npm run lint",
"type-check": "tsc"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"babel-plugin-styled-components": "1.10.6",
"classnames": "^2.2.6",
"gatsby": "2.13.12",
"gatsby-image": "2.2.4",
"gatsby-plugin-canonical-urls": "^2.0.12",
"gatsby-plugin-emotion": "^4.0.6",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "2.2.3",
"gatsby-plugin-typescript": "^2.0.13",
"gatsby-remark-copy-linked-files": "^2.0.12",
"gatsby-remark-images": "3.1.3",
"gatsby-remark-prismjs": "3.3.1",
"gatsby-remark-responsive-iframe": "^2.1.1",
"gatsby-remark-smartypants": "^2.0.9",
"gatsby-source-filesystem": "2.1.3",
"gatsby-transformer-json": "^2.1.11",
"gatsby-transformer-remark": "2.6.1",
"gatsby-transformer-sharp": "2.2.1",
"modern-normalize": "^0.5.0",
"normalize.css": "^8.0.1",
"polished": "^3.3.0",
"prism-themes": "^1.1.0",
"prismjs": "^1.16.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"typeface-roboto": "^0.0.54",
"typescript": "3.5.3"
},
"devDependencies": {
"@types/classnames": "2.2.9",
"@types/node": "11.13.17",
"@types/react": "16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@typescript-eslint/eslint-plugin": "^1.8.0",
"@typescript-eslint/parser": "^1.8.0",
"eslint": "^5.16.0",
"eslint-config-blvd": "^0.1.1",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"gh-pages": "^2.0.1",
"prettier": "^1.17.0",
"rimraf": "^2.6.3"
}
}