-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.61 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.61 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
80
81
82
83
84
85
86
87
{
"name": "ssapi",
"version": "1.0.0",
"description": "Simply Servers API",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"dev": "ts-node ./main.ts",
"start": "nodemon ./main.ts",
"lint": "tslint -c tslint.json -e './node_modules/' --project './src' --fix",
"prod": "npm run build && npm run start",
"debug:mac": "NODE_ENV=dev DEBUG=* node --inspect -r ts-node/register main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimplyServers/API-TS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SimplyServers/API-TS/issues"
},
"homepage": "https://github.com/SimplyServers/API-TS#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.1",
"@types/express-jwt": "0.0.42",
"@types/express-rate-limit": "^3.3.0",
"@types/express-validator": "^3.0.0",
"@types/fs-extra": "^7.0.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/mongo-sanitize": "^1.0.1",
"@types/mongoose": "^5.5.1",
"@types/node": "^12.0.2",
"@types/nodemailer": "^6.1.0",
"@types/passport-jwt": "^3.0.1",
"@types/passport-local": "^1.0.33",
"@types/passport-local-mongoose": "^4.0.12",
"@types/query-string": "^6.3.0",
"@types/raven": "^2.5.3",
"@types/request-promise": "^4.1.43",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@types/socketio-jwt": "github:SimplyServers/socketio-jwt-types",
"@types/url-join": "^4.0.0",
"@types/uuid": "^3.4.4",
"@types/winston": "^2.4.4",
"@types/zxcvbn": "^4.4.0",
"nodemon": "^1.19.0",
"prettier": "^1.17.1",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"express": "^4.17.0",
"express-jwt": "^5.3.1",
"express-rate-limit": "^3.5.1",
"express-sanitizer": "^1.0.5",
"express-validator": "^5.3.1",
"fs-extra": "^8.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.9",
"nodemailer": "^6.1.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"querystring": "^0.2.0",
"raven": "^2.6.4",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"socket.io-stream": "^0.9.1",
"socketio-jwt": "^4.5.0",
"typegoose": "^5.6.0",
"url-join": "^4.0.0",
"uuid": "^3.3.2",
"winston": "^3.2.1",
"zxcvbn": "^4.4.2"
}
}