-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.04 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
58
59
60
61
62
63
64
65
{
"name": "singularity",
"version": "2.2.0",
"description": "A free, easy to use Discord bot",
"repository": "https://github.com/Poly-Pixel/Singularity",
"main": "./build/index.js",
"type": "module",
"dependencies": {
"@sentry/integrations": "^7.58.1",
"@sentry/node": "^7.58.1",
"@sentry/react": "^7.58.1",
"@vitejs/plugin-react": "^4.0.4",
"axios": "^1.7.4",
"body-parser": "^1.20.2",
"bufferutil": "^4.0.7",
"cors": "^2.8.5",
"discord.js": "^14.12.1",
"dotenv": "^16.3.1",
"express": "^4.21.0",
"isarray": "^2.0.5",
"mongoose": "^7.5.0",
"node-cron": "^3.0.1",
"os-utils": "^0.0.14",
"pretty-ms": "^8.0.0",
"process-nextick-args": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-router-dom": "^5.3.0",
"tslib": "^2.6.1",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@sentry/types": "^7.58.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node-cron": "^3.0.8",
"@types/os-utils": "^0.0.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"copyfiles": "^2.4.1",
"eslint": "^8.47.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"vite": "^4.5.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"lint": "eslint .",
"prepare": "husky install",
"build:dev": "rimraf build; tsc && copyfiles -u 4 src/website/frontend/dist/index.html src/website/frontend/dist/**/* build/website/frontend/dist && copyfiles -u 1 src/commands/**/**/meta.json build",
"build:prod": "rimraf build; tsc -p tsconfig.production.json && copyfiles -u 4 src/website/frontend/dist/index.html src/website/frontend/dist/**/* build/website/frontend/dist && copyfiles -u 1 src/commands/**/**/meta.json build",
"build:website": "cd src/website/frontend; vite build"
},
"keywords": [],
"author": "",
"license": "GPL-3.0"
}