-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "vue-express-webapp",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "server/index.ts",
"scripts": {
"dev:frontend": "vite",
"dev:backend": "bun run server/index.ts",
"dev:backend:nodemon": "nodemon --exec node --loader ts-node/esm server/index.ts",
"dev": "concurrently 'npm:dev:frontend' 'npm:dev:backend'",
"dev:nodemon": "concurrently 'npm:dev:frontend' 'npm:dev:backend:nodemon'",
"start": "NODE_ENV=production bun run server/index.ts",
"start:nodemon": "NODE_ENV=production node --loader ts-node/esm server/index.ts",
"build": "vite build"
},
"dependencies": {
"@flatfile/api": "^1.8.10",
"@flatfile/listener": "^1.0.5",
"@flatfile/plugin-record-hook": "^1.6.0",
"@flatfile/vue": "^1.0.17",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"vue": "^3.3.4"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@types/node": "20.4.5",
"@vitejs/plugin-vue": "^4.2.3",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
}
}