-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.23 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
{
"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 <resir014@gmail.com>",
"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",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"start": "npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.17.1",
"classnames": "^2.2.5",
"gatsby": "^1.9.197",
"gatsby-image": "^1.0.37",
"gatsby-link": "^1.6.36",
"gatsby-plugin-canonical-urls": "^1.0.12",
"gatsby-plugin-manifest": "^1.0.14",
"gatsby-plugin-offline": "^1.0.14",
"gatsby-plugin-postcss-sass": "^1.0.16",
"gatsby-plugin-react-helmet": "^2.0.4",
"gatsby-plugin-react-next": "^1.0.8",
"gatsby-plugin-sass": "^1.0.16",
"gatsby-plugin-sharp": "^1.6.27",
"gatsby-plugin-styled-components": "^2.0.6",
"gatsby-plugin-typescript": "^1.4.15",
"gatsby-remark-copy-linked-files": "^1.5.26",
"gatsby-remark-images": "^1.5.43",
"gatsby-remark-prismjs": "^1.2.14",
"gatsby-remark-responsive-iframe": "^1.4.16",
"gatsby-remark-smartypants": "^1.4.10",
"gatsby-source-filesystem": "^1.5.18",
"gatsby-transformer-json": "^1.0.14",
"gatsby-transformer-remark": "^1.7.31",
"gatsby-transformer-sharp": "^1.6.18",
"node-sass": "^4.7.2",
"polished": "^1.9.2",
"prism-themes": "https://github.com/PrismJS/prism-themes.git",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"striptags": "^3.1.1",
"styled-components": "^3.1.6",
"styled-normalize": "^4.0.0",
"typescript": "^2.7.1"
},
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/history": "^4.6.2",
"@types/node": "^9.4.6",
"@types/react": "^16.0.36",
"@types/react-dom": "^16.0.3",
"@types/react-helmet": "^5.0.3",
"@types/react-router-dom": "^4.2.3",
"gh-pages": "^1.1.0",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"tslint-react": "^3.5.1"
}
}