-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "gartbin",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx concurrently \"npx vite --config vite.config.dev.ts\" \"npx tsc -w\" \"npx nodemon dist/index.js\"",
"build": "npx vite build --config vite.config.prod.ts && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gurrrrrrett3/gartbin.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/gurrrrrrett3/gartbin/issues"
},
"homepage": "https://github.com/gurrrrrrett3/gartbin#readme",
"description": "",
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/database/mikro-orm.config.ts"
]
},
"dependencies": {
"@mikro-orm/cli": "^5.6.3",
"@mikro-orm/core": "^5.6.3",
"@mikro-orm/postgresql": "^5.6.3",
"@mikro-orm/reflection": "^5.6.3",
"@types/express": "^4.17.15",
"chalk": "^4.1.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"monaco-editor": "^0.45.0",
"simple-icons": "^11.3.0",
"ts-node": "^10.9.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/node": "^18.11.18",
"@types/ws": "^8.5.10",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-monaco-editor": "^1.1.0"
}
}