forked from Borodutch/backend-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.11 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
{
"name": "backend-starter",
"version": "1.0.0",
"description": "Backend starter template",
"main": "dist/server.js",
"repository": "https://github.com/Borodutch/backend-starter",
"author": "backmeupplz <backmeupplz@gmail.com>",
"license": "MIT",
"scripts": {
"distribute": "yarn build && node dist/server.js",
"start": "tsc-watch --skipLibCheck --onSuccess 'node dist/server.js'",
"build": "tsc --skipLibCheck",
"test": "yarn jest --forceExit --runInBand",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 --ext ts,tsx,json src"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@koa/cors": "^4.0.0",
"amala": "^8.0.2",
"axios": "^1.3.3",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"facebook-node-sdk": "^0.2.0",
"jsonwebtoken": "^9.0.0",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.9.1"
},
"devDependencies": {
"@typegoose/typegoose": "^10.1.1",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^3.3.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"http-graceful-shutdown": "^3.1.13",
"jest": "^29.4.3",
"module-alias": "^2.2.2",
"mongodb-memory-server": "^8.11.4",
"prettier": "^2.8.4",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "yarn@3.4.1"
}