-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.31 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
{
"name": "tsx-docs",
"version": "0.0.15",
"description": "Cocumentation for your React Typescript components powered by Next.js, Styled Components and Rebass.",
"author": "Pete Correia <[email protected]> (https://petecorreia.com)",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"tsx-docs": "./dist/bin/index.js"
},
"files": [
"dist/**/*",
"template/**/*"
],
"scripts": {
"build": "npm run build:components && npm run build:bin",
"build:components": "tsc -p tsconfig.json",
"build:bin": "tsc -p tsconfig.bin.json",
"watch:components": "tsc -w -p tsconfig.json",
"watch:bin": "tsc -w -p tsconfig.bin.json",
"prepare": "npm run build",
"format": "prettier --config .prettierrc --write \"src/**/*.{js,ts,tsx}\"",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"dependencies": {
"@babel/preset-typescript": "7.6.0",
"@zeit/next-css": "1.0.1",
"chalk": "2.4.2",
"execa": "^3.2.0",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.0",
"listr": "^0.14.3",
"lodash.merge": "^4.6.2",
"next": "9.1.2",
"next-server": "^9.0.5",
"polished": "3.4.2",
"prismjs": "1.17.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"rebass": "3.0.1",
"strip-indent": "3.0.0",
"styled-components": "4.4.1",
"yargs": "14.2.0"
},
"peerDependencies": {
"react": ">= 16.11.0",
"react-dom": ">= 16.11.0"
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/fs-extra": "^8.0.1",
"@types/inquirer": "6.5.0",
"@types/listr": "^0.14.2",
"@types/lodash.merge": "^4.6.6",
"@types/next": "8.0.6",
"@types/node": "^12.12.3",
"@types/prismjs": "1.16.0",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"@types/rebass": "3.0.1",
"@types/strip-indent": "3.0.2",
"@types/styled-components": "4.1.20",
"@types/yargs": "^13.0.3",
"prettier": "^1.18.2",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "3.6.4"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/petecorreia/tsx-docs",
"repository": {
"type": "git",
"url": "https://github.com/petecorreia/tsx-docs"
},
"bugs": "https://github.com/petecorreia/tsx-docs/issues",
"keywords": [
"docs",
"documentation",
"react",
"typescript",
"nextjs",
"styled-components",
"rebass"
]
}