-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
89 lines (89 loc) · 2.56 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "esolang-battler",
"private": true,
"version": "1.0.0",
"description": "Esolang codegolf battling platform",
"repository": {
"type": "git",
"url": "https://github.com/hakatashi/esolang-battle.git"
},
"author": "Koki Takahashi <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node app.mjs",
"test": "mocha --reporter spec --exit",
"dev": "nodemon app.mjs --ignore public",
"lint": "prettier-eslint '**/*.js' '**/*.mjs' '**/*.jsx' --ignore 'public/js/lib/**' --write && eslint '**/*.js' --ignore-pattern 'public/js/lib/**'"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@slack/web-api": "^6.9.0",
"async-mutex": "^0.4.0",
"babel-loader": "^9.1.3",
"bootstrap": "^5.3.2",
"chalk": "^5",
"classnames": "^2.3.2",
"common-tags": "^1.8.2",
"compression": "^1.7.4",
"concat-stream": "^2.0.0",
"connect-mongo": "^5.1.0",
"discord.js": "^14.13.0",
"dockerode": "^4.0.0",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"errorhandler": "^1.5.1",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-promise-router": "^4.1.1",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"firebase-admin": "^11.11.0",
"hexdump-stream": "pose/hexdump-stream",
"lodash": "^4.17.21",
"lusca": "^1.7.0",
"markdown-it": "^13.0.2",
"material-colors": "^1.2.6",
"mathjs": "^11.11.2",
"moment": "^2.29.4",
"mongoose": "^7.6.2",
"morgan": "^1.10.0",
"multer": "^2.0.0-rc.4",
"passport": "^0.6.0",
"passport-twitter": "^1.0.4",
"prop-types": "^15.8.1",
"pug": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactstrap": "^9.2.0",
"sass": "^1.69.3",
"shell-escape": "^0.2.0",
"socket.io": "^4.7.2",
"three": "^0.157.0",
"tmp": "^0.2.1",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-hot-middleware": "^2.25.4"
},
"devDependencies": {
"@hakatashi/eslint-config": "^1.20.0",
"chai": "^4.3.10",
"eslint": "^8.51.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"prettier-eslint-cli": "^8.0.1",
"sinon": "^16",
"sinon-mongoose": "^2.3.0",
"supertest": "^6.3.3"
}
}