forked from hideo54/esolang-battle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.26 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.26 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
115
{
"name": "hackathon-starter",
"version": "4.3.0",
"description": "A boilerplate for Node.js web applications",
"repository": {
"type": "git",
"url": "https://github.com/sahat/hackathon-starter.git"
},
"author": "Sahat Yalkabov",
"license": "MIT",
"scripts": {
"start": "node app.js",
"test": "mocha --reporter spec",
"dev": "nodemon app.js --ignore public",
"lint": "prettier-eslint **/*.js **/*.jsx --ignore public/js/lib/** --write && eslint **/*.js --ignore-pattern public/js/lib/**"
},
"engines": {
"node": "^11.0.0"
},
"dependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@slack/web-api": "^6.0.0",
"array-shuffle": "^2.0.0",
"async-mutex": "^0.3.0",
"babel-loader": "^8.2.2",
"bcryptjs": "^2.4.3",
"bignumber.js": "^9.0.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"chalk": "^4.1.0",
"classnames": "^2.2.6",
"common-tags": "^1.8.0",
"compression": "^1.7.4",
"concat-stream": "^2.0.0",
"connect-mongo": "^3.2.0",
"discord.js": "^12.5.1",
"dockerode": "^3.2.1",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-flash": "^0.0.2",
"express-promise-router": "^4.0.1",
"express-session": "^1.17.1",
"express-status-monitor": "^1.3.3",
"express-validator": "^6.9.2",
"firebase-admin": "^9.5.0",
"garlicjs": "^1.4.2",
"hexdump-stream": "pose/hexdump-stream",
"jstransformer-scss": "^1.0.0",
"lodash": "^4.17.20",
"lusca": "^1.6.1",
"markdown-it": "^12.0.4",
"material-colors": "^1.2.6",
"mathjs": "^9.2.0",
"moment": "^2.29.1",
"mongoose": "^5.11.16",
"morgan": "^1.10.0",
"multer": "^2.0.0-alpha.6",
"node-sass-middleware": "^0.11.0",
"passport": "^0.4.1",
"passport-twitter": "^1.0.4",
"prop-types": "^15.7.2",
"pug": "^3.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"reactstrap": "^8.9.0",
"shell-escape": "^0.2.0",
"socket.io": "^3.1.1",
"three": "^0.125.2",
"three-orbitcontrols": "^2.110.3",
"three-trackballcontrols": "0.9.0",
"tmp": "^0.2.1",
"utf-8-validate": "^5.0.4",
"uuid": "^8.3.2",
"validator": "^13.5.2",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-hot-middleware": "^2.25.0"
},
"devDependencies": {
"@hakatashi/eslint-config": "^1.15.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.0",
"nodemon": "^2.0.7",
"prettier-eslint-cli": "^5.0.0",
"sinon": "^9.2.4",
"sinon-mongoose": "^2.3.0",
"supertest": "^6.1.3"
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"comma-dangle": 0,
"consistent-return": 0,
"linebreak-style": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-shadow": 0,
"no-console": 0,
"no-plusplus": 0
}
}
}