-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.28 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.28 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
{
"name": "server",
"version": "1.0.0",
"description": "Alla Pecorina",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js",
"ingestion": "node ./ingestion/engine.js",
"ingestion-team": "node ./ingestion/engine.js --team",
"ingestion-game": "node ./ingestion/engine.js --game",
"ingestion-thread": "node ./ingestion/engine.js --thread",
"mirror": "node ./mirrors/proliferate.js",
"mirror-fudge": "node ./mirrors/proliferate.js --fudge",
"mirror-fudge-mini": "node ./mirrors/proliferate.js --fudge-mini",
"mirror-development": "node ./mirrors/proliferate.js --dev",
"mirror-staging": "node ./mirrors/proliferate.js --stag",
"mirror-production": "node ./mirrors/proliferate.js --prod",
"task-manager": "node ./tasks/task-manager.js",
"task-manager-pipe1-fudge": "node ./tasks/task-manager.js --pipe1 fudge",
"task-manager-pipe1-test": "node ./tasks/task-manager.js --pipe1 test",
"task-manager-pipe1-dev": "node ./tasks/task-manager.js --pipe1 development",
"task-manager-pipe1-stag": "node ./tasks/task-manager.js --pipe1 staging",
"task-manager-pipe1-prod": "node ./tasks/task-manager.js --pipe1 production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/project-team-player/server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/project-team-player/server/issues"
},
"homepage": "https://github.com/project-team-player/server#readme",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.0.0",
"cors": "^2.8.5",
"dompurify": "^2.0.17",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"express-validator": "3.1.2",
"jsonwebtoken": "^8.5.1",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mongodb": "^3.3.0-beta2",
"mongoose": "^5.7.5",
"mongoose-mongodb-errors": "0.0.2",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^8.11.0",
"pug": "^2.0.4",
"slugs": "^0.1.3",
"uuid": "^3.3.2",
"validator": "^11.1.0"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}