generated from Borodutch/backend-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "backend-starter",
"version": "1.0.0",
"description": "Backend starter template",
"main": "dist/app.js",
"repository": "https://github.com/backmeupplz/backend-starter",
"author": "backmeupplz <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"distribute": "yarn build-ts && node dist/app.js",
"develop": "concurrently -i -k -p \"[{name}]\" -n \"Node,TypeScript\" -c \"yellow.bold,cyan.bold\" \"yarn watch-js\" \"yarn watch-ts\"",
"build-ts": "tsc --skipLibCheck",
"watch-ts": "tsc -w --skipLibCheck",
"watch-js": "nodemon dist/app.js",
"test": "yarn jest"
},
"devDependencies": {
"@koa/cors": "^3.1.0",
"@typegoose/typegoose": "^7.4.1",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.6",
"@types/lodash": "^4.14.162",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.14.3",
"concurrently": "^5.3.0",
"jest": "^26.6.1",
"mongodb-memory-server": "^6.9.2",
"nodemon": "^2.0.6",
"supertest": "^5.0.0",
"ts-jest": "^26.4.2"
},
"dependencies": {
"@types/koa-bodyparser": "^4.3.0",
"axios": "^0.21.0",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"facebook-node-sdk": "^0.2.0",
"joi": "^17.3.0",
"js-yaml": "^3.14.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^9.4.0",
"koa-ts-controllers": "^2.3.0",
"lodash": "^4.17.20",
"module-alias": "^2.2.2",
"mongoose": "^5.10.10",
"typescript": "^4.0.3"
},
"_moduleAliases": {
"@/controllers": "dist/controllers",
"@/helpers": "dist/helpers",
"@/models": "dist/models"
}
}