This repository was archived by the owner on Nov 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
73
74
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "babel-node --extensions '.ts' app/server.ts",
"dev": "nodemon",
"lint": "eslint '**/*.ts'",
"lint:fix": "yarn lint --fix",
"seed": "babel-node --extensions '.ts' app/seeds",
"test": "NODE_ENV=test jest app"
},
"jest": {
"testEnvironment": "node",
"browser": false
},
"dependencies": {
"bcrypt": "^5.0.0",
"config": "^3.3.1",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-router": "^9.1.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.19",
"mongoose": "^5.9.27",
"mongoose-unique-validator": "^2.0.3",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/bcrypt": "^3.0.0",
"@types/config": "^0.0.36",
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa2-cors": "^2.0.1",
"@types/lodash": "^4.14.158",
"@types/mongoose": "^5.7.34",
"@types/mongoose-unique-validator": "^1.0.4",
"@types/node": "^14.0.27",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-jest": "^26.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^4.1.0",
"jest": "^26.2.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"typescript": "^3.9.7"
}
}