-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "backend-starter",
"version": "1.0.0",
"description": "Backend starter template",
"main": "dist/server.js",
"repository": "https://github.com/Borodutch/backend-starter",
"author": "backmeupplz <[email protected]>",
"prettier": "@big-whale-labs/prettier-config",
"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 ./src/",
"lint-fix": "yarn eslint ./src/ --fix"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@koa/cors": "^5.0.0",
"amala": "^10.0.8",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"facebook-node-sdk": "^0.2.0",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-router": "^12.0.1",
"lodash": "^4.17.21",
"mongoose": "^8.4.0"
},
"devDependencies": {
"@big-whale-labs/bwl-eslint-backend": "^1.0.6",
"@big-whale-labs/prettier-config": "^1.1.3",
"@rushstack/eslint-patch": "^1.10.3",
"@typegoose/typegoose": "^12.5.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa__cors": "^5.0.0",
"@types/lodash": "^4.17.4",
"@types/node": "^20.12.13",
"@types/supertest": "^6.0.2",
"axios-mock-adapter": "^1.22.0",
"eslint": "^9.3.0",
"http-graceful-shutdown": "^3.1.13",
"jest": "^29.7.0",
"module-alias": "^2.2.3",
"mongodb-memory-server": "^9.3.0",
"prettier": "^3.2.5",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"tsc-watch": "^6.2.0",
"typescript": "^5.4.5"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "[email protected]"
}