-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "scouting-server",
"version": "1.0.0",
"description": "Scouting Server",
"main": "collectionServer.js",
"homepage": "https://github.com/barryb5/learn-auth-server#README.md",
"scripts": {
"start": "nodemon collectionServer.js",
"linuxstart": "gnome-terminal -- ./ngrok.sh; nodemon collectionServer.js",
"windowsstart": "wt -p \"ngrok\" bash ngrok.sh ; split-pane -p \"CollectionServer\" nodemon collectionServer.js",
"test": "jest"
},
"keywords": [],
"author": {
"name": "Barry B Benson",
"email": "bbalasingham@gmail.com"
},
"license": "ISC",
"dependencies": {
"axios": "^0.21.4",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"jstat": "^1.9.6",
"morgan": "^1.10.0",
"papaparse": "^5.3.2",
"qrcode-terminal": "^0.12.0",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.2"
},
"devDependencies": {
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"nodemon": "^2.0.20"
},
"repository": {
"type": "git",
"url": "https://github.com/barryb5/learn-auth-server"
},
"bugs": {
"url": "https://github.com/barryb5/learn-auth-server/issues"
},
"engines": {
"node": "^18.12.1",
"npm": "^9.2.0"
}
}