-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.29 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
{
"name": "refit",
"version": "1.0.3",
"description": "A CLI tool for easily managing dependency updates 📦",
"author": "Rick Brenn <[email protected]>",
"keywords": [
"npm",
"pnpm",
"yarn",
"refit",
"node",
"dependencies",
"modules",
"update",
"updates",
"upgrade",
"upgrades",
"updater",
"package.json",
"version",
"management",
"changelog",
"monorepo",
"wizard",
"interactive"
],
"repository": {
"type": "git",
"url": "https://github.com/rickbrenn/refit.git"
},
"homepage": "https://github.com/rickbrenn/refit",
"bugs": {
"url": "https://github.com/rickbrenn/refit/issues"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"type": "module",
"bin": {
"refit": "bin/cli.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"start": "./bin/cli.js",
"build": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development webpack",
"lint": "eslint src --ext .js",
"lint:fix": "npm run lint -- --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"dependencies": {
"@npmcli/arborist": "^9.0.0",
"@npmcli/map-workspaces": "^4.0.2",
"@npmcli/name-from-folder": "^3.0.0",
"@npmcli/package-json": "^6.1.0",
"@octokit/core": "^6.1.3",
"chalk": "^5.4.1",
"dayjs": "^1.11.13",
"ink": "^5.1.0",
"ink-text-input": "^6.0.0",
"marked": "^14.1.2",
"marked-terminal": "^7.2.1",
"open": "^10.1.0",
"p-map": "^7.0.3",
"pacote": "^21.0.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"read-yaml-file": "^2.1.0",
"semver": "^7.6.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@jest/globals": "^29.7.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}