-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "rooms-api",
"version": "0.0.1",
"description": "Rooms API",
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
},
"engineStrict": true,
"main": "index.js",
"scripts": {
"start": "nodemon ./build/server.js",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint -c ./.eslintrc.js --max-warnings=0 --resolve-plugins-relative-to ./ './**/*.ts'",
"lint:fix": "eslint --fix -c ./.eslintrc.js --max-warnings=0 --resolve-plugins-relative-to ./ './**/*.ts'",
"test": "mocha -r ts-node/register ./tests/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windingtree/rooms.git"
},
"keywords": [],
"author": "Winding Tree",
"license": "MIT",
"bugs": {
"url": "https://github.com/windingtree/rooms/issues"
},
"homepage": "https://github.com/windingtree/rooms#readme",
"dependencies": {
"@sendgrid/mail": "7.7.0",
"aws-sdk": "2.1182.0",
"axios": "0.27.2",
"body-parser": "1.20.0",
"cors": "2.8.5",
"dotenv": "16.0.1",
"express": "4.18.1",
"graphql": "16.5.0",
"graphql-request": "4.3.0",
"jimp": "0.16.1",
"jose": "2.0.5",
"jsonwebtoken": "8.5.1",
"moment": "2.29.4",
"moment-range": "4.0.2",
"mongodb": "3.7.3",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/body-parser": "1.19.2",
"@types/chai": "4.3.1",
"@types/chai-as-promised": "7.1.5",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jsonwebtoken": "8.5.8",
"@types/mocha": "9.1.1",
"@types/mongodb": "3.6.20",
"@types/node": "18.6.1",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"eslint": "8.20.0",
"mocha": "10.0.0",
"nodemon": "2.0.19",
"ts-node": "10.9.1",
"typescript": "4.7.4"
}
}