-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "100thieves",
"version": "1.0.0",
"description": "This project uses TypeScript, Node.js, Express 4, MongoDB, and Mongoose.",
"main": "index.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"iconv-lite": "^0.5.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongoose": "^5.9.13",
"morgan": "^1.10.0",
"node-fetch": "^2.6.0",
"passport": "^0.3.2",
"passport-jwt": "^4.0.0",
"rxjs": "^6.5.5",
"twitch-api-v5": "^2.0.4",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/debug": "4.1.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.16",
"@types/morgan": "^1.9.0",
"@types/node": "^13.13.5",
"@types/passport": "^1.0.3",
"@types/passport-jwt": "^3.0.3",
"@types/express-serve-static-core": "^4.17.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"concurrently": "^5.2.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-typescript": "^5.0.1",
"gulp-yaml": "^2.0.4",
"mocha": "^7.1.2",
"mocha-typescript": "^1.1.17",
"nodemon": "^2.0.3",
"typescript": "^3.8.3"
},
"scripts": {
"start": "node dist/index.js",
"watch": "gulp watch",
"serve": "nodemon dist/index.js",
"build": "gulp build",
"test": "mocha -t 30000 dist/tests/**/*.spec.js",
"deploy": "gcloud app deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lowryrussell/100-Thieves-iOS.git"
},
"keywords": [],
"author": "Russell Lowry <[email protected]>",
"license": "GPL",
"homepage": "https://github.com/lowryrussell/100-Thieves-iOS/blob/master/README.md"
}