-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 843 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 843 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
{
"name": "xur",
"private": true,
"version": "0.0.0",
"main": "server.js",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"client:dev": "vite",
"server:dev": "nodemon src/server.js",
"server:build": "babel --verbose --out-dir dist --only 'src/server.js,src/lib/' src",
"client:build": "vite build",
"build": "npm run server:build && npm run client:build",
"serve": "vite preview",
"start": "node dist/server.js"
},
"dependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"babel-loader": "^9.1.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"vue": "^3.3.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"concurrently": "^8.2.0",
"nodemon": "^3.0.1",
"sass": "^1.64.2",
"vite": "^4.4.5"
}
}