-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "@rtvision/bidvault-api",
"version": "0.0.0",
"author": "Kalven Schraut <[email protected]>",
"contributors": [
"Jeff Fox <[email protected]>",
"Josh Johnson <[email protected]>",
"Kevin Trettel <[email protected]>",
"Matt Adams <[email protected]>"
],
"type": "module",
"scripts": {
"build": "vite build",
"clean": "rm -rf dist/*",
"dev": "pnpm clean && vite",
"lint": "eslint ./src/",
"lint-fix": "eslint ./src/ --fix",
"type-check": "tsc --no-emit"
},
"dependencies": {
"pm2": "^5.2.0"
},
"devDependencies": {
"@fastify/type-provider-json-schema-to-ts": "^2.1.1",
"@mikro-orm/core": "^5.4.2",
"@mikro-orm/postgresql": "^5.4.2",
"@mikro-orm/reflection": "^5.4.2",
"@types/node": "^18.7.18",
"dotenv": "^16.0.2",
"fastify": "^4.5.3",
"json-schema-to-ts": "^2.5.5",
"tslib": "^2.4.0",
"vite": "^3.0.9",
"vite-plugin-node": "^1.0.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vite": "3"
}
}
}
}