-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.43 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.43 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
72
73
74
75
76
77
78
79
{
"name": "coms319-project",
"version": "1.0.0",
"description": "CS 319 group project",
"main": "server.js",
"engines": {
"node": "10.15.0",
"npm": "6.8.0"
},
"scripts": {
"setup": "./scripts/dotenv.sh -f && npm i",
"build": "tsc",
"start": "node -r esm -r source-map-support/register src/server.js",
"devstart": "node --require esm --require source-map-support/register --require dotenv/config src/server.js",
"dev": "nodemon",
"pretest": "npm run build",
"test": "mocha --exit --require=esm --require=source-map-support/register --require dotenv/config test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://git.linux.iastate.edu/319spring19projectrepositories/taghreed/group-14.git"
},
"keywords": [
"CS319",
"Sockets",
"TypeScript",
"NodeJS",
"javascript"
],
"author": "Maxwell DeVos, Mason Timmerman, John Jago, Joseph Naberhaus",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.1",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/ip": "^1.1.0",
"@types/mongoose": "^5.3.24",
"@types/node": "^11.10.4",
"@types/passport": "^1.0.0",
"@types/passport-local": "^1.0.33",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.4",
"@types/nodemailer": "^4.6.7",
"@types/chai": "^4.1.7",
"chai": "^4.2.0",
"@types/mocha": "^5.2.6",
"mocha": "^6.1.3",
"nodemon": "^1.18.10",
"socket.io-client": "^2.2.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.4",
"dotenv": "^6.2.0",
"esm": "^3.2.9",
"express": "^4.16.4",
"express-session": "^1.15.6",
"ip": "^1.1.5",
"mongoose": "^5.4.20",
"nodemailer": "^6.1.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"socket.io": "^2.2.0",
"source-map-support": "^0.5.11",
"typescript": "^3.4.3",
"uuid": "^3.3.2",
"vash": "^0.12.6"
},
"nodemonConfig": {
"watch": [
"src"
],
"exec": "npm run build && npm run devstart",
"ext": "ts"
}
}