forked from airbnb/javascript
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
133 lines (133 loc) · 5.48 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
{
"name": "zillow-style",
"version": "0.0.0-monorepo",
"private": true,
"description": "A mostly reasonable approach to JavaScript.",
"scripts": {
"build:plugin": "node ./packages/eslint-plugin-zillow/lib/render-plugin-configs.js",
"check:prettier:parser": "prettier --debug-check --ignore-path ./.gitignore 'packages/**/*.@(js|md)'",
"lint": "npm-run-all --silent lint:*",
"lint:js": "eslint ./packages --cache --cache-location ./node_modules/.cache/eslint --report-unused-disable-directives",
"lint:md": "markdownlint README.md */README.md packages/*/README.md",
"lint:rules": "npm-run-all --silent --print-label lint:rules:*",
"lint:rules:base": "eslint-find-rules --unused packages/eslint-config-zillow-base/index.js",
"lint:rules:jest": "eslint-find-rules --unused packages/eslint-config-zillow-base/jest.js --no-core",
"lint:rules:main": "eslint-find-rules --unused packages/eslint-config-zillow/index.js",
"lint:rules:mocha": "eslint-find-rules --unused packages/eslint-config-zillow-base/mocha.js --no-core",
"lint:rules:typescript": "eslint-find-rules --unused packages/eslint-config-zillow-typescript/index.js --no-core",
"lint:prettier": "eslint --print-config packages/eslint-config-zillow/index.js | eslint-config-prettier-check",
"pretest": "npm run build:plugin && npm run --silent lint",
"test": "jest",
"test:watch": "jest --watch",
"preversion": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/zillow/javascript.git"
},
"keywords": [
"style guide",
"lint",
"zillow",
"es6",
"es2015",
"react",
"jsx"
],
"license": "MIT",
"homepage": "https://github.com/zillow/javascript",
"engines": {
"node": ">= 10.17"
},
"jest": {
"testRunner": "jest-circus/runner",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/packages/**/test/**/*.js"
]
},
"devDependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.6",
"@babel/generator": "^7.11.6",
"@babel/helper-annotate-as-pure": "^7.10.4",
"@babel/helper-builder-react-jsx": "^7.10.4",
"@babel/helper-builder-react-jsx-experimental": "^7.11.5",
"@babel/helper-create-class-features-plugin": "^7.10.5",
"@babel/helper-define-map": "^7.10.5",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-get-function-arity": "^7.10.4",
"@babel/helper-member-expression-to-functions": "^7.11.0",
"@babel/helper-module-imports": "^7.10.4",
"@babel/helper-optimise-call-expression": "^7.10.4",
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/helper-replace-supers": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
"@babel/highlight": "^7.10.4",
"@babel/parser": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.10.4",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-classes": "^7.10.4",
"@babel/plugin-transform-computed-properties": "^7.10.4",
"@babel/plugin-transform-parameters": "^7.10.5",
"@babel/plugin-transform-react-display-name": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-react-jsx-development": "^7.11.5",
"@babel/plugin-transform-react-jsx-self": "^7.10.4",
"@babel/plugin-transform-react-jsx-source": "^7.10.5",
"@babel/plugin-transform-template-literals": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/template": "^7.10.4",
"@babel/traverse": "^7.11.5",
"@babel/types": "^7.11.5",
"@eslint/eslintrc": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-eslint": "^10.1.0",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-jsx-remove-data-test-id": "^2.1.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-styled-components": "^1.11.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"es-abstract": "1.17.6",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-find-rules": "^3.6.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"fast-async": "^7.0.6",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"jsx-ast-utils": "2.4.1",
"lerna": "^3.22.1",
"markdownlint-cli": "^0.23.2",
"npm-run-all": "^4.1.5",
"object.assign": "4.1.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"side-channel": "1.0.2",
"string.prototype.matchall": "4.0.2",
"styled-components": "^4.4.1",
"typescript": "^4.0.3"
},
"dependencies": {
"babel-preset-zillow": "file:packages/babel-preset-zillow",
"eslint-config-zillow": "file:packages/eslint-config-zillow",
"eslint-config-zillow-base": "file:packages/eslint-config-zillow-base",
"eslint-config-zillow-typescript": "file:packages/eslint-config-zillow-typescript",
"eslint-plugin-zillow": "file:packages/eslint-plugin-zillow",
"prettier-config-zillow": "file:packages/prettier-config-zillow",
"zillow-browser-shims": "file:packages/zillow-browser-shims",
"zillow-js-shims": "file:packages/zillow-js-shims"
}
}