This repository has been archived by the owner on Feb 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.88 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "aksara",
"description": "Kata Design Language System (DLS).",
"version": "1.0.0",
"private": true,
"author": "Kata.ai <dev@kata.ai>",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public",
"commit": "git cz",
"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": "serve public",
"test": "npm run type-check && npm run lint",
"type-check": "tsc"
},
"dependencies": {
"@kata-kit/fonts": "^0.5.2",
"babel-plugin-styled-components": "^1.8.0",
"classnames": "^2.2.6",
"dotenv": "^6.1.0",
"gatsby": "^2.0.55",
"gatsby-image": "^2.0.20",
"gatsby-link": "^2.0.6",
"gatsby-plugin-canonical-urls": "^2.0.7",
"gatsby-plugin-google-analytics": "^2.0.8",
"gatsby-plugin-layout": "^1.0.9",
"gatsby-plugin-manifest": "^2.0.11",
"gatsby-plugin-netlify": "^2.0.6",
"gatsby-plugin-netlify-cache": "^1.0.0",
"gatsby-plugin-react-helmet": "^3.0.2",
"gatsby-plugin-resolve-src": "^2.0.0-beta.1",
"gatsby-plugin-sharp": "^2.0.13",
"gatsby-plugin-sitemap": "^2.0.3",
"gatsby-plugin-styled-components": "^3.0.3",
"gatsby-plugin-typescript": "^2.0.1",
"gatsby-remark-autolink-headers": "^2.0.11",
"gatsby-remark-copy-linked-files": "^2.0.6",
"gatsby-remark-images": "^3.0.0",
"gatsby-remark-prismjs": "^3.0.3",
"gatsby-remark-responsive-iframe": "^2.0.6",
"gatsby-remark-smartypants": "^2.0.6",
"gatsby-source-filesystem": "^2.0.8",
"gatsby-transformer-json": "^2.1.5",
"gatsby-transformer-remark": "^2.1.12",
"gatsby-transformer-sharp": "^2.1.8",
"modern-normalize": "^0.5.0",
"polished": "^2.3.0",
"prism-themes": "^1.0.1",
"prismjs": "^1.15.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"react-media-match": "^1.8.2",
"rehype-react": "^3.1.0",
"styled-components": "^4.0.3",
"styled-normalize": "^8.0.4",
"typescript": "^3.1.6"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/history": "^4.7.2",
"@types/node": "^10.12.10",
"@types/reach__router": "^1.2.2",
"@types/react": "^16.7.7",
"@types/react-dom": "^16.0.10",
"@types/react-helmet": "^5.0.7",
"@types/styled-components": "^4.0.3",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^2.0.1",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"serve": "^10.1.1",
"tslint": "^5.11.0",
"tslint-config-kata": "^1.1.2",
"tslint-config-prettier": "^1.16.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}