forked from hakatashi/esolang-battle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.51 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.51 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"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 <hakatasiloving@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && mkdir ./dist && cp -R ./public ./dist && cp -R ./views ./dist && cp .env ./dist && npx tsc",
"migrate": "npm run build; node ./dist/bin/migrate.js",
"start": "npm run build; node --enable-source-maps ./dist/app.mjs",
"test": "mocha --reporter spec --exit",
"dev": "nodemon --exec npm run start --ignore dist --ignore public --ext js,mjs,ts,json,pug",
"lint": "prettier-eslint '**/*.ts' '**/*.mts' --write"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@babel/core": "^7.22.5",
"@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.22.5",
"@babel/preset-react": "^7.22.5",
"@slack/web-api": "^6.8.1",
"async-mutex": "^0.4.0",
"babel-loader": "^9.1.2",
"bootstrap": "^5.3.0",
"chalk": "^5",
"classnames": "^2.3.2",
"common-tags": "^1.8.2",
"compression": "^1.7.4",
"concat-stream": "^2.0.0",
"connect-mongo": "^5.0.0",
"discord.js": "^14.11.0",
"dockerode": "^3.3.5",
"dotenv": "^16.3.0",
"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.9.0",
"hexdump-stream": "pose/hexdump-stream",
"lodash": "^4.17.21",
"lusca": "^1.7.0",
"markdown-it": "^13.0.1",
"material-colors": "^1.2.6",
"mathjs": "^11.8.1",
"moment": "^2.29.4",
"mongoose": "^7.3.0",
"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.63.4",
"shell-escape": "^0.2.0",
"socket.io": "^4.6.2",
"three": "^0.153.0",
"tmp": "^0.2.1",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.0",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-hot-middleware": "^2.25.3"
},
"devDependencies": {
"@hakatashi/eslint-config": "^1.20.0",
"@slack/types": "^2.8.0",
"@types/chalk": "^2.2.0",
"@types/compression": "^1.7.2",
"@types/concat-stream": "^2.0.0",
"@types/dockerode": "^3.3.19",
"@types/errorhandler": "^1.5.0",
"@types/express-flash": "^0.0.2",
"@types/express-session": "^1.17.7",
"@types/lodash": "^4.14.195",
"@types/lusca": "^1.7.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^20.3.1",
"@types/passport": "^1.0.12",
"@types/passport-twitter": "^1.0.37",
"@types/shell-escape": "^0.2.1",
"@types/tmp": "^0.2.3",
"@types/utf-8-validate": "^5.0.0",
"@types/webpack": "^5.28.1",
"@types/webpack-hot-middleware": "^2.25.6",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"prettier-eslint-cli": "^7.1.0",
"sinon": "^7",
"sinon-mongoose": "^2.3.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}