-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 3.7 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
{
"name": "pkode",
"version": "0.0.0-semantically-released",
"description": "CLI toolbox for common scripts for my projects",
"bin": {
"pkode": "./dist/index.js"
},
"files": [
"dist",
"base-tsconfig.json",
"babel.js",
"config.js",
"eslint.js",
"jest.js",
"prettier.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zainfathoni/pkode.git"
},
"keywords": [
"scripts"
],
"author": "Zain Fathoni <[email protected]> (https://zainfathoni.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zainfathoni/pkode/issues"
},
"homepage": "https://github.com/zainfathoni/pkode#readme",
"engines": {
"node": "^14.17.0 || >=16.0.0",
"npm": ">=6"
},
"dependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.2",
"@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/plugin-transform-modules-commonjs": "7.18.2",
"@babel/plugin-transform-runtime": "7.18.2",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@babel/runtime": "7.18.3",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-replace": "4.0.0",
"@types/arrify": "2.0.1",
"@types/babel__core": "7.1.19",
"@types/cross-spawn": "6.0.2",
"@types/is-ci": "3.0.0",
"@types/jest": "28.1.1",
"@types/jest-in-case": "1.0.5",
"@types/lodash.camelcase": "4.3.7",
"@types/lodash.has": "4.5.7",
"@types/lodash.omit": "4.5.7",
"@types/mkdirp": "1.0.2",
"@types/rimraf": "3.0.2",
"@types/rollup-plugin-node-builtins": "2.1.2",
"@types/rollup-plugin-node-globals": "1.4.1",
"@types/semver": "7.3.9",
"@types/which": "2.0.1",
"@types/yargs-parser": "21.0.0",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"arrify": "2.0.1",
"babel-jest": "28.1.1",
"babel-plugin-macros": "3.1.0",
"babel-plugin-minify-dead-code-elimination": "0.5.2",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"browserslist": "4.20.4",
"builtin-modules": "3.3.0",
"concurrently": "7.2.1",
"cosmiconfig": "7.0.1",
"cpy": "8.1.2",
"cross-env": "7.0.3",
"cross-spawn": "7.0.3",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-playwright": "0.9.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-yml": "1.0.0",
"glob": "8.0.3",
"is-ci": "3.0.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-serializer-path": "0.1.15",
"jest-snapshot-serializer-raw": "1.2.0",
"jest-watch-typeahead": "1.1.0",
"lodash.camelcase": "4.3.0",
"lodash.has": "4.5.2",
"lodash.omit": "4.5.0",
"mkdirp": "1.0.4",
"prettier": "2.6.2",
"read-pkg-up": "7.0.1",
"resolve": "1.22.0",
"rimraf": "3.0.2",
"rollup": "2.75.6",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-terser": "7.0.2",
"semver": "7.3.7",
"which": "2.0.2",
"yargs-parser": "21.0.1"
},
"devDependencies": {
"jest-in-case": "1.0.2",
"slash": "3.0.0"
}
}