-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.98 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
{
"name": "scouting-server",
"version": "1.0.0",
"description": "Scouting Server",
"main": "collectionServer.js",
"homepage": "https://github.com/barryb5/learn-auth-server#README.md",
"type": "module",
"scripts": {
"start": "node collectionServer.js",
"start and build": "npm run build && node collectionServer.js",
"linuxstart": "gnome-terminal -- ./ngrok.sh; node collectionServer.js",
"macstart": "open -a Terminal.app ngrok.sh; node collectionServer.js",
"windowsstart": "wt -p \"ngrok\" bash ngrok.sh ; split-pane -p \"CollectionServer\" node collectionServer.js",
"test": "jest",
"dev": "nodemon collectionServer.js",
"setup": "node setup.mjs",
"build": "tsc",
"watch": "tsc --watch"
},
"keywords": [],
"author": "Cassie Colby <cassiecolby@gmail.com>",
"license": "ISC",
"dependencies": {
"@slack/web-api": "^6.10.0",
"@supabase/supabase-js": "^2.38.4",
"@types/express": "^4.17.20",
"@types/node": "^20.8.7",
"axios": "^0.21.4",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"chalk": "^5.2.0",
"cors": "^2.8.5",
"csv": "^6.3.3",
"csvtojson": "^2.0.10",
"express": "^4.18.2",
"inquirer": "^9.1.5",
"jsonwebtoken": "^9.0.2",
"jstat": "^1.9.6",
"knex": "^3.0.1",
"mathjs": "^11.5.0",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"nodejs": "^0.0.0",
"ora": "^6.1.2",
"papaparse": "^5.3.2",
"qrcode-terminal": "^0.12.0",
"simple-statistics": "^7.8.3",
"socket.io": "^4.6.1",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.6",
"supabase": "^1.106.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barryb5/learn-auth-server.git"
},
"bugs": {
"url": "https://github.com/barryb5/learn-auth-server/issues"
},
"engines": {
"node": "^18.12.1",
"npm": "^9.2.0"
}
}