-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
59 lines (59 loc) · 1.33 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
{
"name": "NESTrisChamps",
"version": "1.0.0",
"description": "",
"exports": "./index.js",
"type": "module",
"scripts": {
"start": "node -r dotenv/config server.js",
"session": "node -r dotenv/config scripts/set_session_ids.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"lint": "npm run lint-be && npm run lint-fe",
"lint-be": "eslint ./",
"lint-fe": "eslint ./public"
},
"keywords": [
"tetris",
"statistics"
],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "3.354.0",
"@aws-sdk/lib-storage": "3.354.0",
"@twurple/api": "6.2.1",
"@twurple/auth": "6.2.1",
"@twurple/chat": "6.2.1",
"celebrate": "15.0.1",
"connect-pg-simple": "9.0.0",
"cors": "2.8.5",
"country-list": "2.3.0",
"dotenv": "16.3.1",
"ejs": "3.1.9",
"express": "4.18.2",
"express-session": "1.17.3",
"glob": "10.2.7",
"google-auth-library": "^9.13.0",
"got": "13.0.0",
"lodash": "4.17.21",
"nocache": "4.0.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.12.0",
"timezones.json": "1.7.0",
"ulid": "2.3.0",
"uuid": "9.0.0",
"ws": "8.13.0"
},
"engines": {
"node": "18.x"
},
"devDependencies": {
"csv-parse": "5.4.0",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"husky": "8.0.3",
"prettier": "2.8.8",
"pretty-quick": "3.1.3"
}
}