-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "pit display app",
"version": "1.0.0",
"description": "application to display the status of the FRC competition and robot in the pit",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"keywords": [],
"author": {
"name": "gcschmit",
"members": [
"aravjuneja",
"georgiariley13",
"yutong-ji"
]
},
"license": "ISC",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.0",
"eslint-plugin-promise": "^6.1.1"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"axios": "^1.7.9",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"google-auth-library": "^9.4.1",
"isomorphic-ws": "^5.0.0",
"mongoose": "^7.4.0",
"morgan": "^1.10.0",
"node": "^20.18.1",
"nodemon": "^3.0.2",
"ntcore-ts-client": "^0.2.2",
"socket.io": "^4.7.5",
"tslib": "^2.6.2",
"uuid": "^9.0.1",
"zod": "^3.23.4"
}
}