-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.08 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "warzone",
"version": "1.0.0",
"description": "A Call of Duty: Warzone stats tracking site for gamers and their squads",
"main": "index.js",
"exact-engines": {
"node": "12.22.1",
"npm": "7.9.0"
},
"scripts": {
"test": "mocha --require esm",
"build": "next build",
"nodemon": "npm run pre-start && nodemon",
"reminder": "node config/dev/reminders.js",
"refresh-materialized-views": "ts-node lib/etl/jobs/materialized_views_refresh.ts",
"refresh-gamer-matches": "ts-node lib/etl/jobs/user_match_runner.ts --jobType followed_users",
"backfill-gamer-matches": "ts-node lib/etl/jobs/user_match_runner.ts --jobType backfill",
"update-gamer-matches": "ts-node lib/etl/jobs/user_match_runner.ts --jobType update",
"regenerate-views": "ts-node lib/sql/utilities/ViewGeneration/index.ts",
"drop-view": "ts-node lib/sql/utilities/ViewDrop/index.ts",
"view-logs": "heroku logs -t",
"dev": "npm run pre-start && ts-node server.ts",
"dev-start-only": "ts-node server.ts",
"pre-start": "ts-node config/dev/preStart.ts",
"_dev": "next dev",
"start": "NODE_ENV=production ts-node server.ts",
"etl": "ts-node src/lib/etl/user_match_scrape.js",
"git-add": "git add .",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"validate": "npm ls"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"@types/express": "^4.17.11",
"@types/node": "^14.14.22",
"@types/react": "^16.14.2",
"@types/yargs": "^15.0.12",
"@zeit/next-sass": "^1.0.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"call-of-duty-api": "^1.3.1",
"chai": "^4.2.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"css-loader": "^4.3.0",
"ejs": "^3.1.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-recaptcha": "^5.0.2",
"express-useragent": "^1.0.15",
"file-loader": "^6.2.0",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"localstorage-polyfill": "^1.0.1",
"lodash": "^4.17.20",
"massive": "^6.6.4",
"md5": "^2.3.0",
"mocha": "^8.2.1",
"moment": "^2.29.1",
"next": "^9.5.5",
"node-sass": "^4.13.1",
"precommit-hook": "^3.0.0",
"randomstring": "^1.1.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-google-recaptcha-v3": "^1.7.1",
"react-infinite-scroller": "^1.2.4",
"recharts": "^1.8.5",
"request-ip": "^2.1.3",
"sass": "^1.32.4",
"sass-loader": "^10.1.1",
"serve-favicon": "^2.5.0",
"style-loader": "^2.0.0",
"tracer": "^1.1.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"useragent": "^2.3.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-react": "^7.22.0",
"post-commit": "0.0.1",
"prompts": "^2.4.0",
"ts-loader": "^8.0.14"
},
"post-commit": [
"reminder"
],
"pre-commit": [
"lint-fix",
"git-add"
]
}