-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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": "adventure-notes-api",
"version": "1.0.0",
"description": "An API for storing player and DM notes related to a role playing campaign.",
"main": "main.js",
"scripts": {
"compile": "rm -rf dist/* && tsc",
"nodemon": "nodemon",
"start-dev": "node --inspect=0.0.0.0:9229 dist/main.js",
"start-prod": "node dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"apollo-server": "^2.10.0",
"dataloader-factory": "^3.1.2",
"graphql": "^14.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongodb": "^3.5.2",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.16",
"type-graphql": "^0.17.6"
},
"devDependencies": {
"@types/jsonwebtoken": "7.2.7",
"@types/lodash": "^4.14.149",
"@types/mongodb": "^3.3.15",
"@types/source-map-support": "^0.4.0",
"eslint": "^6.8.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.2",
"typescript": "^3.8.2",
"utility-types": "^3.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wickning1/adventure-notes-api.git"
},
"keywords": [
"dnd",
"roleplaying",
"notes",
"campaign",
"adventure",
"dungeons",
"dragons",
"5e"
],
"author": "Nick Wing",
"license": "MIT",
"bugs": {
"url": "https://github.com/wickning1/adventure-notes-api/issues"
},
"homepage": "https://github.com/wickning1/adventure-notes-api#readme",
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"delay": "80ms",
"exec": "npm run compile && npm run start-dev"
}
}