forked from resir014/gatsby-starter-typescript-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.06 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
{
"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",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"start": "npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"classnames": "^2.2.5",
"gatsby": "^1.9.223",
"gatsby-link": "^1.6.38",
"gatsby-plugin-canonical-urls": "^1.0.14",
"gatsby-plugin-react-helmet": "^2.0.6",
"gatsby-plugin-react-next": "^1.0.10",
"gatsby-plugin-sharp": "^1.6.38",
"gatsby-plugin-styled-components": "^2.0.9",
"gatsby-plugin-typescript": "^1.4.17",
"gatsby-remark-copy-linked-files": "^1.5.30",
"gatsby-remark-images": "^1.5.54",
"gatsby-remark-prismjs": "^1.2.17",
"gatsby-remark-responsive-iframe": "^1.4.18",
"gatsby-remark-smartypants": "^1.4.12",
"gatsby-source-filesystem": "^1.5.26",
"gatsby-transformer-json": "^1.0.16",
"gatsby-transformer-remark": "^1.7.34",
"gatsby-transformer-sharp": "^1.6.22",
"normalize.css": "^7.0.0",
"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",
"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.5",
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.3",
"@types/react-helmet": "^5.0.5",
"@types/react-router-dom": "^4.2.3",
"gh-pages": "^1.1.0",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"tslint-config-blvd": "github:blvdgroup/tslint-config-blvd",
"tslint-react": "^3.4.0"
}
}