-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
55
56
57
{
"name": "lunarr-app",
"version": "0.0.1",
"private": true,
"dependencies": {
"@discordjs/rest": "^1.3.0",
"@prisma/client": "^4.4.0",
"axios": "^1.1.2",
"bufferutil": "^4.0.6",
"chalk": "^4.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cli-highlight": "^2.1.11",
"deep-equal": "^2.0.5",
"discord-api-types": "^0.37.11",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"erlpack": "^0.1.4",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"nanoflakes": "^1.0.2",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"tsyringe": "^4.7.0",
"utf-8-validate": "^5.0.9",
"uuid": "^9.0.0",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/deep-equal": "^1.0.1",
"@types/express": "^4.17.14",
"@types/express-serve-static-core": "^4.17.31",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.186",
"@types/node": "^18.8.5",
"@types/qs": "^6.9.7",
"@types/serve-static": "^1.15.0",
"@types/uuid": "^8.3.4",
"prisma": "^4.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.8.0",
"tsconfig-paths": "^4.1.0",
"tsconfig-replace-paths": "^0.0.11",
"typescript": "^4.8.4"
},
"scripts": {
"build": "rimraf ./dist && tsc && tsconfig-replace-paths && ./scripts/copy-assets-from-src.sh",
"start": "yarn build && node dist/index.js",
"frontend": "cd frontend && yarn"
}
}