This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.5 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
{
"name": "lunarbox-api",
"main": "dist/index.js",
"repository": "git@github.com/BlueGhostGH/lunarbox-api.git",
"author": "BlueGhostGH <engisoftleaderoff@gmail.com>",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.11",
"@types/hapi__joi": "^17.1.0",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.0",
"@types/koa-session": "^5.10.2",
"@types/koa__cors": "^3.0.2",
"@types/mocha": "^7.0.2",
"@types/pg": "^7.14.3",
"@types/superagent": "^4.1.7",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"source-map-support": "^0.5.19",
"superagent": "^5.2.2",
"supertest": "^4.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@koa/cors": "^3.1.0",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"isbot": "^3.0.4",
"knex": "^0.21.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^8.0.8",
"koa-session": "^6.0.0",
"pg": "^8.0.3"
},
"scripts": {
"lint": "eslint **/*.ts",
"format": "prettier --write \"**/*.+(js|json|ts)\"",
"check": "yarn format && yarn lint",
"build": "tsc",
"start": "node ./dist/src/index.js",
"start-dev": "node -r ./register.js src/index.ts",
"dev": "nodemon",
"fresh-testdb": "dropdb --if-exists test-lunarbox && createdb test-lunarbox",
"test": "npm run fresh-testdb && cross-env NODE_ENV=test mocha -r ./register.js 'src/**/*.test.ts' --exit",
"test-coverage": "nyc npm test"
}
}