-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.66 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
{
"name": "vite-to-cra",
"version": "1.2.0",
"author": "Minimals",
"description": "Migrate your Vite.js projects to CRA for Minimal UI",
"main": "index.js",
"license": "MIT",
"keywords": [
"Codemod",
"Vite",
"CRA",
"Migration"
],
"scripts": {
"bundle-packages": "tsup",
"bundle-packages:watch": "tsup --watch",
"pre-publish": "npm run bundle-packages && node scripts/pre-publish",
"publish-package": "npm run pre-publish && cd ./dist && npm publish",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"fm:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"fm:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"rm:all": "rm -rf node_modules .next out dist build",
"start": "npm run rm:all && npm install && npm run bundle-packages:watch"
},
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@swc/core": "^1.5.28",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-perfectionist": "^2.10.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.2.0",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"bin": {
"vite-to-cra": "index.js"
}
}