-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
{
"name": "code-vault",
"version": "1.0.0",
"private": true,
"type": "module",
"author": "woong-jae",
"license": "ISC",
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"start": "webpack serve",
"build": "webpack",
"build:production": "NODE_ENV=production webpack && zip -r dist.zip dist",
"test": "pnpm jest --watch",
"update:version": "node bin/version"
},
"devDependencies": {
"@inquirer/prompts": "^4.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.86",
"@tanstack/eslint-plugin-query": "^5.14.6",
"@types/chrome": "^0.0.240",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"autoprefixer": "^10.4.14",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2",
"postcss": "^8.4.27",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.3",
"swc-loader": "^0.2.3",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@tanstack/react-query": "^5.15.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"js-base64": "^3.7.5",
"lucide-react": "^0.274.0",
"octokit": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4",
"zustand": "^4.4.1"
}
}