-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.54 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
75
76
77
78
79
80
{
"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.12",
"@types/react-vertical-timeline-component": "3.0.0",
"babel-plugin-styled-components": "^1.10.1",
"classnames": "^2.2.6",
"gatsby": "^2.10.0",
"gatsby-image": "^2.2.1",
"gatsby-plugin-canonical-urls": "^2.1.0",
"gatsby-plugin-emotion": "^4.1.0",
"gatsby-plugin-manifest": "^2.4.36",
"gatsby-plugin-offline": "^3.2.37",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-sharp": "^2.2.1",
"gatsby-plugin-typescript": "^2.1.0",
"gatsby-remark-copy-linked-files": "^2.1.0",
"gatsby-remark-images": "^3.1.0",
"gatsby-remark-prismjs": "^3.3.0",
"gatsby-remark-responsive-iframe": "^2.2.0",
"gatsby-remark-smartypants": "^2.1.0",
"gatsby-source-filesystem": "^2.1.0",
"gatsby-transformer-json": "^2.2.0",
"gatsby-transformer-remark": "^2.5.0",
"gatsby-transformer-sharp": "^2.2.0",
"modern-normalize": "^0.5.0",
"normalize.css": "^8.0.1",
"polished": "^3.4.1",
"prism-themes": "^1.1.0",
"prismjs": "^1.16.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-scroll-section": "2.1.0",
"react-vertical-timeline-component": "3.0.2",
"typescript": "^3.5.2",
"use-sound": "1.0.2"
},
"devDependencies": {
"@types/classnames": "^2.2.8",
"@types/node": "^12.0.10",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"eslint-config-blvd": "^1.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"gatsby-plugin-web-font-loader": "1.0.4",
"gh-pages": "^2.0.1",
"prettier": "^1.18.2",
"rimraf": "^2.6.3"
}
}