This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
102 lines (102 loc) · 3.05 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
{
"name": "create-react-styleguide",
"description": "A toolkit for creating React component libraries and style guides",
"version": "8.2.3",
"license": "ISC",
"author": "Brian Stone <[email protected]>",
"homepage": "https://github.com/zillow/create-react-styleguide#readme",
"bugs": {
"url": "https://github.com/zillow/create-react-styleguide/issues"
},
"bin": {
"create-react-styleguide": "./bin/index.js"
},
"main": "./lib/index.js",
"scripts": {
"clean": "./bin/index.js script clean",
"eslint": "./bin/index.js script eslint",
"eslint:fix": "./bin/index.js script eslint:fix",
"test": "./bin/index.js script test",
"test:coverage": "./bin/index.js script test:coverage",
"test:update": "./bin/index.js script test:update",
"test:watch": "./bin/index.js script test:watch",
"prepublishOnly": "npm run eslint && npm run test",
"release": "standard-version",
"prepare": "node ./prepare.js"
},
"files": [
"bin",
"lib",
"templates"
],
"engines": {
"node": ">=14.9.0"
},
"dependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/runtime": "^7.18.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-eslint": "^8.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"acorn": "^8.8.0",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-zillow": "^4.4.0",
"chalk": "^4.1.2",
"circular-dependency-plugin": "^5.2.2",
"copy-template-dir": "^1.4.0",
"cross-spawn": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^26.8.3",
"eslint-plugin-zillow": "^4.0.0",
"inquirer": "^8.2.0",
"jest": "^27.5.1",
"jest-styled-components": "^7.1.0",
"ora": "^5.4.1",
"prettier": "^2.7.1",
"prettier-config-zillow": "^1.3.0",
"react-styleguidist": "^11.2.0",
"resolve": "^1.22.1",
"resolve-pkg": "^2.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.78.0",
"rollup-plugin-terser": "^7.0.2",
"run-parallel": "^1.2.0",
"run-series": "^1.1.9",
"semver": "^7.3.7",
"tacks": "^1.3.0",
"tempy": "^1.0.1",
"webpack": "^4.46.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"standard-version": "^9.5.0",
"styled-components": "^5.3.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zillow/create-react-styleguide.git"
},
"keywords": [
"development",
"react",
"styleguide",
"style guide",
"component library",
"tooling"
]
}