-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 980 Bytes
/
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
{
"name": "wasp-codemod",
"version": "0.1.0",
"description": "",
"scripts": {
"imports-0-11": "ts-node src/transform-imports-from-0-11-to-0-12.ts",
"imports-0-11:test": "npm run imports-0-11 -- --test test/imports-from-0-11-to-0-12/input-*",
"imports-0-11:npx": "npx [email protected] -t https://raw.githubusercontent.com/wasp-lang/wasp-codemod/main/src/transforms/imports-from-0-11-to-0-12.ts --extensions=js,ts,jsx,tsx",
"imports-0-11:npx:test": "npm run imports-0-11:npx -- --print --dry test/imports-from-0-11-to-0-12/input-*",
"format": "prettier . --write",
"lint": "eslint ."
},
"devDependencies": {
"@types/jscodeshift": "^0.11.11",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"jscodeshift": "^0.15.1"
}
}