-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.63 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
66
67
{
"name": "fcbot",
"version": "1.0.0",
"description": "",
"main": "dist/package-scripts/both.js",
"engines": {
"node": "16.x"
},
"scripts": {
"build": "node_modules/.bin/tsc",
"worker": "node dist/package-scripts/worker.js",
"web": "node dist/package-scripts/web.js",
"dev": "nodemon src/package-scripts/both.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/core": "^10.0.17",
"@emotion/styled": "^10.0.17",
"@js-joda/core": "^3.2.0",
"@js-joda/locale_en-us": "^3.2.2",
"@js-joda/timezone": "^2.5.0",
"@types/lodash": "^4.14.165",
"@types/node": "^13.13.36",
"async-mutex": "^0.3.1",
"deep-diff": "^1.0.2",
"discord.js": "^13.3.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"formik": "^2.2.6",
"lodash": "^4.17.20",
"memjs": "^1.2.2",
"mongodb": "^3.6.3",
"node-cache": "^5.1.2",
"node-schedule": "^1.3.2",
"openid-client": "^4.9.1",
"ordinal": "^1.0.3",
"ranked": "^0.4.0",
"request-promise": "^4.2.6",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/deep-diff": "^1.0.0",
"@types/express": "^4.17.13",
"@types/memjs": "^1.2.1",
"@types/mongodb": "^3.6.3",
"@types/node-schedule": "^1.3.1",
"@types/request-promise": "^4.1.47",
"longjohn": "^0.2.12",
"nodemon": "^2.0.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}