-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 931 Bytes
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
{
"name": "idea-studio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"local": "NODE_ENV=development vite build --mode development",
"deploy": "./shell/deploy.sh",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@types/marked": "^6.0.0",
"marked": "^17.0.2",
"vue": "^3.5.30",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/tsconfig": "^0.5.1",
"animated-scroll-to": "^2.3.2",
"marked-base-url": "^1.1.8",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"typescript": "~5.4.2",
"vite": "^8.0.0",
"vue-tsc": "^2.0.6"
}
}