-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.23 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.23 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
{
"name": "scribe-comics-api",
"version": "0.0.0",
"description": "Scribe Comics API",
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "npm run build -- --watch",
"clean": "npm run clean:build",
"clean:build": "rimraf lib/",
"dev": "cross-env NODE_ENV=development NODE_SECRET=95977023-e346-4db8-90b7-2c010a4e6f1f DB_URI=mongodb://localhost:27017/scribe-comics concurrently \"npm run build:watch\" \"npm run start:watch\"",
"install:ci": "npm ci",
"lint": "eslint '{src,tests}/**/*.ts'",
"start": "node lib/index.js",
"start:watch": "nodemon lib/index.js --log"
},
"author": "Ethan Arrowood",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/koa-bodyparser": "^5.0.2",
"@types/koa-logger": "^3.1.0",
"@types/koa-router": "7.4.0",
"@types/koa__cors": "^3.0.1",
"@types/mongoose": "^5.3.26",
"@types/node": "^13.7.1",
"@types/ramda": "^0.26.6",
"@types/uuid": "^3.4.5",
"@types/yargs-parser": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"nodemon": "^2.0.2",
"opn-cli": "^5.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.0",
"typescript": "^3.3.1"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"@types/async-busboy": "^0.7.0",
"@types/event-stream": "^3.3.34",
"@types/jsonwebtoken": "^8.3.5",
"@types/node-forge": "^0.9.2",
"@types/pdfkit": "^0.10.1",
"async-busboy": "^0.7.0",
"axios": "^0.21.1",
"big-integer": "^1.6.44",
"cheerio": "^1.0.0-rc.5",
"cross-env": "^7.0.0",
"event-stream": "^4.0.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-router": "^8.0.7",
"koa-swagger-decorator-trolloks": "^1.5.16",
"mongoose": "^5.5.1",
"node-forge": "^0.9.1",
"pdf2json": "^1.1.8",
"pdfkit": "^0.11.0",
"puppeteer": "^7.1.0",
"ramda": "^0.27.0",
"reflect-metadata": "^0.1.13",
"uuid": "^3.3.2",
"yargs-parser": "^17.0.0"
}
}