forked from fluidsonic/widgetbot
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.53 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/widgetbot-io/server.git",
"author": "samdd <sam@samdd.me>",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/server.ts",
"pull": "git stash && git pull && yarn && yarn build",
"build": "rm -rf dist; tsc && ef-tspm",
"doc": "typedoc --includeDeclarations --excludeExternals --externalPattern \"**/node_modules/!(@widgetbot)/**\" --ignoreCompilerErrors --out ./docs/ ./src",
"precommit": "pretty-quick --staged"
},
"dependencies": {
"@ef-carbon/tspm": "~2.2.5",
"@seald-io/nedb": "^4.1.2",
"@sindresorhus/is": "~0.17.1",
"@types/expect": "~1.20.4",
"@types/express": "~4.17.25",
"@types/express-graphql": "~0.9.2",
"@types/express-winston": "2.4.4",
"@types/geoip-lite": "~1.4.4",
"@types/jest": "~22.2.3",
"@types/jsonwebtoken": "~7.2.8",
"@types/lodash": "~4.17.24",
"@types/memoizee": "~0.4.12",
"@types/node": "^18.19.130",
"@types/raven": "~2.5.7",
"@types/react-notification-system": "~0.2.46",
"@types/request": "~2.48.13",
"@types/uuid": "~3.4.13",
"country-emoji": "~1.5.6",
"discord.js": "^14.26.4",
"doasync": "^2.0.1",
"errorhandler": "~1.5.2",
"expect": "~23.6.0",
"express": "~4.22.2",
"express-graphql": "~0.12.0",
"express-interceptor": "~1.2.0",
"express-rate-limit": "~2.14.2",
"express-winston": "2.6.0",
"extend": "~3.0.2",
"function-pipe": "~1.2.4",
"geoip-lite": "~1.4.10",
"graphql": "~0.13.2",
"html-template-tag": "~2.0.0",
"jsonwebtoken": "^9.0.3",
"lodash": "~4.18.1",
"memoizee": "~0.4.17",
"node-yaml": "^3.2.0",
"npm": "^8.19.4",
"os-name": "~2.0.1",
"pmx": "~1.6.8",
"pretty-bytes": "~5.6.0",
"pretty-ms": "~3.2.0",
"raven": "~2.6.4",
"request": "^2.88.2",
"socket.io": "4.8.3",
"socket.io-client": "^4.8.3",
"source-map-support": "~0.5.21",
"timestring": "~5.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "~3.15.0",
"typescript": "^5.9.3",
"uuid": "~3.4.0",
"winston": "2.4.7",
"winston-console-formatter": "^1.0.0-beta.3"
},
"devDependencies": {
"@types/errorhandler": "~0.0.32",
"awesome-typescript-loader": "~5.2.1",
"chalk": "~2.4.2",
"husky": "~0.14.3",
"ifdef-loader": "~2.3.2",
"javascript-obfuscator": "^4.2.2",
"jest": "^28.1.3",
"ncp": "~2.0.0",
"prettier": "~1.19.1",
"pretty-quick": "~1.11.1",
"raw-loader": "~0.5.1",
"typedoc": "^0.28.19"
}
}