-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 KB
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
{
"name": "react-and-typescript",
"private": true,
"description": "React and TypeScript: The Unofficial Documentation",
"version": "0.1.0",
"author": "Aryan Jabbari <aryanjabbari@gmail.com>",
"scripts": {
"predevelop": "yarn clean",
"develop": "docz dev",
"prebuild": "yarn clean",
"build": "docz build",
"clean": "rimraf ./.docz",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "yarn develop"
},
"dependencies": {
"axios": "^0.19.0",
"docz": "^2.0.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"prettier": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.8.6",
"rimraf": "^3.0.0",
"styled-components": "^5.0.0"
},
"keywords": [
"gatsby",
"react",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AryanJ-NYC/reactandtypescript.dev"
},
"bugs": {
"url": "https://github.com/AryanJ-NYC/reactandtypescript.dev/issues"
}
}