-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) Β· 3.96 KB
/
package.json
File metadata and controls
136 lines (136 loc) Β· 3.96 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
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
135
136
{
"name": "component-docs",
"version": "0.24.0",
"description": "Documentation for React components",
"bin": "bin/component-docs.js",
"main": "dist/index.js",
"files": [
"bin/",
"dist/",
"components.js"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/satya164/component-docs.git"
},
"scripts": {
"build": "babel src/ --extensions '.ts,.tsx' --source-maps --out-dir dist/ --copy-files && linaria -o dist/css -r src -i dist src/**/*.js",
"lint:js": "eslint \"**/*.{js,ts,tsx}\"",
"lint:css": "stylelint src/**/*.{js,ts,tsx}",
"lint": "yarn lint:js && yarn lint:css",
"typescript": "tsc --noEmit",
"prepare": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1",
"example": "babel-node --extensions '.ts,.tsx' src/cli serve --root example",
"prebuild": "del dist/",
"preexample": "del example/dist && yarn build",
"release": "release-it"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn typescript"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-flow": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/register": "^7.12.1",
"@mdx-js/mdx": "^0.20.3",
"@mdx-js/tag": "^0.20.3",
"ast-types": "^0.14.2",
"babel-loader": "^8.1.0",
"chalk": "^4.1.0",
"core-js": "3.6.5",
"cosmiconfig": "^7.0.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^5.0.0",
"dashify": "^2.0.0",
"dedent": "^0.7.0",
"doctrine": "^3.0.0",
"escape-html": "^1.0.3",
"express": "^4.17.1",
"file-loader": "^5.1.0",
"front-matter": "^4.0.2",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"hast-util-to-html": "^7.1.2",
"hast-util-to-string": "^1.0.4",
"history": "^5.0.0",
"ignore-styles": "^5.0.1",
"linaria": "^1.3.3",
"marked": "^1.2.2",
"mime-types": "^2.1.27",
"mini-css-extract-plugin": "^1.2.1",
"opn": "^6.0.0",
"ora": "^5.1.0",
"path-is-inside": "^1.0.2",
"prop-types": "^15.7.2",
"react": "~17.0.1",
"react-docgen": "^5.3.1",
"react-dom": "~17.0.1",
"recast": "^0.20.4",
"redbox-react": "^1.6.0",
"refractor": "^3.2.0",
"rehype": "^11.0.0",
"require-relative": "^0.8.7",
"sane": "^4.1.0",
"sanitize-html": "^1.22.0",
"unist-util-visit": "^2.0.3",
"url": "^0.11.0",
"webpack": "^5.3.2",
"webpack-dev-middleware": "^4.0.0",
"webpack-hot-middleware": "^2.25.0",
"yargs": "^16.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/node": "^7.12.1",
"@callstack/eslint-config": "^10.1.0",
"@release-it/conventional-changelog": "^2.0.0",
"@types/babel__core": "^7.1.11",
"@types/chalk": "^2.2.0",
"@types/cosmiconfig": "^6.0.0",
"@types/dashify": "^1.0.0",
"@types/dedent": "^0.7.0",
"@types/doctrine": "^0.0.3",
"@types/escape-html": "^1.0.0",
"@types/express": "^4.17.8",
"@types/fs-extra": "^9.0.2",
"@types/marked": "^1.1.0",
"@types/mime-types": "^2.1.0",
"@types/mini-css-extract-plugin": "^1.2.0",
"@types/path-is-inside": "^1.0.0",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/refractor": "^3.0.0",
"@types/require-relative": "^0.8.0",
"@types/sane": "^2.0.0",
"@types/sanitize-html": "^1.27.0",
"@types/webpack-dev-middleware": "^3.7.2",
"@types/yargs": "^15.0.9",
"babel-eslint": "^10.1.0",
"del-cli": "^3.0.1",
"eslint": "^7.12.1",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"release-it": "^14.2.1",
"stylelint": "^13.7.2",
"stylelint-config-recommended": "^3.0.0",
"typescript": "^4.0.5"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
}
}