-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
103 lines (103 loc) · 2.76 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
{
"name": "tradeshift-scripts",
"version": "0.0.0-semantically-released",
"description": "CLI for common scripts for my projects",
"engines": {
"node": ">=20.18.1"
},
"bin": {
"tradeshift-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",
"precommit": "node src precommit"
},
"files": [
"dist",
"babel.js",
"eslint.js",
"config.js",
"prettier.js",
"husky.js"
],
"keywords": [],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"arrify": "^2.0.1",
"babel-jest": "^29.7.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browserslist": "^4.24.2",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.6",
"env-ci": "^11.1.0",
"eslint": "^8.57.1",
"eslint-config-tradeshift": "^9.0.1",
"eslint-plugin-react": "^7.37.2",
"execa": "^8.0.1",
"glob": "^8.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.10",
"lodash.camelcase": "^4.3.0",
"lodash.has": "^4.5.2",
"lodash.merge": "^4.6.2",
"mkdirp": "^3.0.1",
"prettier": "^3.4.1",
"read-pkg-up": "^7.0.1",
"resolve": "^1.22.8",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"which": "^4.0.0",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"doctoc": "2.2.1",
"jest-in-case": "1.0.2",
"typescript": "5.7.2"
},
"eslintIgnored": [
"node_modules",
"coverage",
"dist"
],
"eslintConfig": {
"extends": "./src/config/eslintrc",
"rules": {
"jest/no-jest-import": 0
}
},
"prettier": "./src/config/prettierrc",
"repository": {
"type": "git",
"url": "https://github.com/tradeshift/tradeshift-scripts.git"
},
"bugs": {
"url": "https://github.com/tradeshift/tradeshift-scripts/issues"
},
"homepage": "https://github.com/tradeshift/tradeshift-scripts#readme"
}