-
Notifications
You must be signed in to change notification settings - Fork 207
/
package.json
127 lines (127 loc) · 3.52 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
{
"name": "kcd-scripts",
"version": "0.0.0-semantically-released",
"description": "CLI for common scripts for my projects",
"keywords": [],
"homepage": "https://github.com/kentcdodds/kcd-scripts#readme",
"bugs": {
"url": "https://github.com/kentcdodds/kcd-scripts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/kcd-scripts"
},
"license": "MIT",
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)",
"bin": {
"kcd-scripts": "dist/index.js"
},
"files": [
"dist",
"babel.js",
"config.js",
"eslint.js",
"husky.js",
"jest.js",
"prettier.js",
"shared-tsconfig.json"
],
"scripts": {
"build": "node src build",
"format": "node src format",
"lint": "node src lint",
"test": "node src test",
"test:update": "node src test --updateSnapshot",
"validate": "node src validate"
},
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/jest"
],
"rules": {
"no-console": "off",
"no-nested-ternary": "off",
"no-process-exit": "off",
"no-useless-catch": "off",
"import/extensions": "off",
"import/no-dynamic-require": "off",
"import/no-import-module-exports": "off",
"import/no-unassigned-import": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"dependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/plugin-transform-class-properties": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.4.0",
"arrify": "^2.0.1",
"babel-jest": "^29.4.1",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browserslist": "4.21.3",
"builtin-modules": "^3.3.0",
"chalk": "^4.1.2",
"concurrently": "^7.3.0",
"cosmiconfig": "^7.0.1",
"cpy": "npm:@brickdoc/[email protected]",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"doctoc": "^2.2.0",
"eslint": "^8.23.0",
"eslint-config-kentcdodds": "^20.4.0",
"glob": "^8.0.3",
"husky": "^4.3.8",
"is-ci": "^3.0.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-serializer-path": "^0.1.15",
"jest-snapshot-serializer-raw": "^1.2.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^12.5.0",
"lodash.camelcase": "^4.3.0",
"lodash.has": "^4.5.2",
"lodash.omit": "^4.5.0",
"mkdirp": "^1.0.4",
"prettier": "^3",
"read-pkg-up": "^7.0.1",
"resolve": "^1.22.1",
"rimraf": "^3.0.2",
"rollup": "^4.12.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"semver": "^7.3.7",
"which": "^2.0.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"jest-in-case": "^1.0.2",
"slash": "^3.0.0"
},
"overrides": {
"caniuse-lite": "1.0.30001553"
},
"engines": {
"node": "^16.10.0 || >=17.0.0",
"npm": ">=6"
}
}