-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1 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
{
"name": "ratchet",
"private": true,
"description": "Convert React propTypes to TypeScript types.",
"repository": "github:mskelton/ratchet",
"author": "Mark Skelton",
"license": "ISC",
"packageManager": "[email protected]",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"test": "node --experimental-vm-modules $(yarn bin jest)",
"ts": "tsc"
},
"workspaces": [
"e2e",
"web"
],
"type": "module",
"dependencies": {
"jscodeshift": "^0.14.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@mskelton/eslint-config": "^7.1.0",
"@types/jscodeshift": "^0.11.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.56.0",
"eslint-plugin-sort": "^2.4.0",
"jest": "^29.4.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
}
}