-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
134 lines (134 loc) · 3.66 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "gatsby-starter-typescript-rebass-netlifycms",
"description": "My standard gatsby setup",
"version": "0.1.0",
"scripts": {
"build": "gatsby build",
"clean": "rm -rf .cache && yarn start",
"develop": "nodemon --exec \"gatsby develop\"",
"debug": "nodemon --exec \"node --inspect-brk --no-lazy node_modules/.bin/gatsby develop\"",
"lint": "eslint . --ext ts --ext tsx",
"prettier-write": "prettier --write \"src/**/*.js\"",
"release": "auto shipit",
"start": "yarn develop",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"type-check": "tsc --pretty --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn prettier-write",
"git add"
]
},
"nodemonConfig": {
"ignore": [
".cache/*",
"public/*",
"schema.json",
"src/*"
],
"delay": "1500"
},
"prettier": {
"bracketSpacing": true,
"proseWrap": "always",
"semi": false,
"singleQuote": false,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/lodash": "^4.14.120",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"@types/rebass": "^0.3.4",
"@types/styled-components": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^1.1.0",
"auto-release-cli": "2.3.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.1",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-graphql": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"gatsby-plugin-typescript": "^2.0.3",
"graphql-typescript-definitions": "^0.15.0",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lint-staged": "^8.1.0",
"multer": "^1.4.1",
"netlify-cms-backend-fs": "^0.3.6",
"nodemon": "^1.18.9",
"prettier": "^1.15.3",
"typescript": "^3.2.4",
"typescript-styled-plugin": "^0.13.0",
"webpack-notifier": "^1.7.0",
"webpack-shell-plugin": "^0.5.0"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@mdx-js/mdx": "^0.16.6",
"@mdx-js/tag": "^0.16.6",
"@reach/router": "^1.2.1",
"babel-plugin-styled-components": "^1.10.0",
"d3-ease": "^1.0.5",
"docz-utils": "^0.13.6",
"gatsby": "^2.0.76",
"gatsby-image": "^2.0.20",
"gatsby-mdx": "^0.3.4",
"gatsby-plugin-catch-links": "^2.0.9",
"gatsby-plugin-manifest": "^2.0.9",
"gatsby-plugin-netlify-cms": "^3.0.10",
"gatsby-plugin-offline": "^2.0.16",
"gatsby-plugin-sharp": "^2.0.14",
"gatsby-plugin-styled-components": "^3.0.4",
"gatsby-source-filesystem": "^2.0.16",
"gatsby-transformer-sharp": "^2.1.8",
"hast-util-to-string": "^1.0.1",
"lodash": "^4.17.11",
"marked": "^0.6.0",
"netlify-cms": "^2.3.3",
"netlify-cms-widget-mdx": "^0.3.1",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-head": "^3.0.2",
"react-powerplug": "^1.0.0",
"rebass": "^3.0.1",
"styled-components": "^4.1.3",
"styled-system": "^3.2.1",
"unstated": "^2.1.1",
"write": "^1.0.3"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/damassi/gatsby-starter-typescript-rebass-netlifycms"
},
"bugs": {
"url": "https://github.com/damassi/gatsby-starter-typescript-rebass-netlifycms/issues"
},
"authors": [
"Christopher Pappas <[email protected]"
],
"keywords": [
"Gatsby",
"TypeScript",
"Styled Components",
"Netlify",
"CMS",
"MDX",
"Rebass",
"Starter"
]
}