forked from euglena1215/slide-viewer-gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.27 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 <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",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "tslint 'src/**/*.{ts,tsx}' -p tsconfig.json",
"start": "npm run dev",
"test": "npm run type-check && npm run lint",
"type-check": "tsc"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"antd": "^3.10.9",
"axios": "^0.18.0",
"babel-plugin-styled-components": "^1.7.1",
"classnames": "^2.2.6",
"emotion": "^9.2.9",
"emotion-server": "^9.2.9",
"gatsby": "^2.0.3",
"gatsby-image": "^2.0.5",
"gatsby-plugin-antd": "^2.0.2",
"gatsby-plugin-canonical-urls": "^2.0.5",
"gatsby-plugin-emotion": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-typescript": "^2.0.0",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.1",
"gatsby-remark-prismjs": "^3.0.0",
"gatsby-remark-responsive-iframe": "^2.0.5",
"gatsby-remark-smartypants": "^2.0.5",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-transformer-json": "^2.1.1",
"gatsby-transformer-remark": "^2.1.3",
"modern-normalize": "^0.5.0",
"normalize.css": "^8.0.0",
"polished": "^2.0.3",
"prism-themes": "^1.0.1",
"prismjs": "^1.15.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-emotion": "^9.2.9",
"react-helmet": "^5.2.0",
"react-pdf-js": "https://github.com/euglena1215/react-pdf-js",
"typescript": "^3.0.3"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/node": "^10.10.1",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/react-helmet": "^5.0.7",
"gh-pages": "^2.0.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-config-blvd": "^1.2.1",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0"
}
}