-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.37 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.37 KB
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
{
"name": "ecampus-dashboard-smu",
"version": "1.2.6",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run dev:content",
"dev:content": "vite build --watch --config vite.content.config.ts",
"dev:background": "vite build --watch --config vite.background.config.ts",
"dev:popup": "vite build --watch --config vite.popup.config.ts",
"dev:ui": "vite --config vite.preview.config.ts",
"build:content": "vite build --config vite.content.config.ts",
"build:background": "vite build --config vite.background.config.ts",
"build:popup": "vite build --config vite.popup.config.ts",
"build:ui": "vite build --config vite.preview.config.ts",
"build": "npm run clean && npm run build:content && npm run build:background && npm run build:popup && node scripts/write-dist-manifest.mjs",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"version:check": "node scripts/check-version-sync.mjs",
"release:notes": "node scripts/generate-release-notes.mjs"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^7.3.1"
}
}