-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "tf2frags.net",
"version": "1.0.0",
"description": "Code for TF2Frags Twitch and website",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production pm2 start server.js --watch --env production",
"dev": "NODE_ENV=development nodemon server.js",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --timeout 10000 --recursive tests/**/*.test.js --exit",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IAmThermite/TF2Frags.net.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/IAmThermite/TF2Frags.net/issues"
},
"homepage": "https://github.com/IAmThermite/TF2Frags.net#readme",
"dependencies": {
"aws-sdk": "^2.524.0",
"body-parser": "^1.19.0",
"config": "^3.2.2",
"connect-mongodb-session": "^2.2.0",
"cors": "^2.8.5",
"ejs": "^2.6.2",
"emoji-flags": "^1.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"express-session": "^1.16.2",
"helmet": "^3.21.1",
"mongodb": "^3.3.0",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-steam": "^1.0.10",
"request": "^2.88.0",
"xss": "^1.0.6"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.7",
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
}
}