-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.75 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ochat-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"postinstall": "npm run build",
"configureMongo": "ts-node src/helpers/configureMongo.ts",
"clearMongo": "ts-node src/helpers/clearMongo.ts",
"clearRedis": "ts-node src/helpers/clearRedis.ts",
"generateVapidKeys": "ts-node src/helpers/generateVapidKeys.ts"
},
"engines": {
"node": "15.x",
"npm": "6.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o-development/ochat-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/o-development/ochat-api/issues"
},
"homepage": "https://github.com/o-development/ochat-api#readme",
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/clownface": "^1.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/ioredis": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/jsonschema": "^1.1.1",
"@types/mongodb": "^3.6.0",
"@types/multer": "^1.4.5",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.7",
"@types/parse-link-header": "^1.0.0",
"@types/rdfjs__dataset": "^1.0.4",
"@types/rdfjs__fetch": "^2.0.2",
"@types/rdfjs__parser-n3": "^1.1.3",
"@types/socket.io": "^2.1.11",
"@types/url-parse": "^1.4.3",
"@types/uuid": "^8.3.0",
"@types/web-push": "^3.3.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.1.2"
},
"dependencies": {
"@inrupt/solid-auth-fetcher": "jaxoncreed/solid-auth-fetcher-fork#master",
"@inrupt/solid-client": "^1.6.0",
"@rdfjs/fetch": "^2.1.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"clownface": "^1.0.0",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"expo-server-sdk": "^3.6.0",
"express": "5.0.0-alpha.8",
"express-session": "^1.17.1",
"ioredis": "^4.19.2",
"jsonschema": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.3",
"multer": "^1.4.2",
"n3": "^1.6.4",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"onesignal-node": "^3.2.0",
"socket.io": "^3.0.3",
"socket.io-client": "^3.0.3",
"url-parse": "^1.4.7",
"uuid": "^8.3.2",
"web-push": "^3.4.4",
"ws": "^7.4.0"
}
}