forked from kentcdodds/kcd-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.56 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
{
"name": "cfc-scripts",
"version": "0.0.0-semantically-released",
"description": "CLI for common scripts for my projects",
"engines": {
"node": ">=10.18",
"npm": ">=6",
"yarn": ">=1"
},
"bin": {
"cfc-scripts": "dist/index.js"
},
"scripts": {
"test": "node src test",
"test:update": "node src test --updateSnapshot",
"build": "node src build",
"lint": "node src lint",
"format": "node src format",
"validate": "node src validate"
},
"files": [
"dist",
"babel.js",
"config.js",
"eslint.js",
"husky.js",
"jest.js",
"prettier.js",
"shared-tsconfig.json"
],
"keywords": [],
"authors": [
"Kent C. Dodds <[email protected]> (https://kentcdodds.com)",
"Cristian C. Flórez <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^26.0.24",
"arrify": "^2.0.1",
"babel-jest": "^27.0.6",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browserslist": "^4.16.6",
"builtin-modules": "^3.2.0",
"chalk": "^4.1.1",
"concurrently": "^6.2.0",
"cosmiconfig": "^7.0.0",
"cpy": "^8.1.2",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"doctoc": "^2.0.1",
"eslint": "^7.31.0",
"eslint-config-crisfcodes": "^19.2.8",
"glob": "^7.1.7",
"husky": "^4.3.8",
"is-ci": "^3.0.0",
"jest": "^27.0.6",
"jest-serializer-path": "^0.1.15",
"jest-snapshot-serializer-raw": "^1.2.0",
"jest-watch-typeahead": "^0.6.4",
"lint-staged": "^11.0.1",
"lodash.camelcase": "^4.3.0",
"lodash.has": "^4.5.2",
"lodash.omit": "^4.5.0",
"mkdirp": "^1.0.4",
"prettier": "2.3.2",
"read-pkg-up": "^7.0.1",
"resolve": "^1.20.0",
"rimraf": "^3.0.2",
"rollup": "^2.53.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.5",
"which": "^2.0.2",
"yargs-parser": "^20.2.9"
},
"eslintConfig": {
"extends": [
"crisfcodes",
"crisfcodes/jest"
],
"rules": {
"no-process-exit": "off",
"import/no-dynamic-require": "off",
"import/no-import-module-exports": "off",
"import/no-unassigned-import": "off",
"import/extensions": "off",
"no-console": "off",
"no-nested-ternary": "off",
"no-useless-catch": "off",
"simple-import-sort/imports": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/crisfcodes/cfc-scripts"
},
"bugs": {
"url": "https://github.com/crisfcodes/cfc-scripts/issues"
},
"homepage": "https://github.com/crisfcodes/cfc-scripts#readme",
"devDependencies": {
"jest-in-case": "^1.0.2",
"slash": "^3.0.0"
}
}