-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.52 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
75
76
77
78
79
80
{
"name": "trador-data",
"version": "1.0.0",
"description": "Trad Auth and API Servers for Trador",
"scripts": {
"test": "jest --detectOpenHandles --verbose",
"env:dev": "cross-env NODE_ENV=development",
"env:prod": "cross-env NODE_ENV=production",
"watch:api": "npm run env:dev && nodemon -x ts-node -r tsconfig-paths/register src/servers/api-server/index.ts",
"watch:auth": "npm run env:dev && nodemon -x ts-node -r tsconfig-paths/register src/servers/auth-server/index.ts",
"prebuild": "rm -rf build/*",
"build": "tsc",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**"
},
"keywords": [],
"author": {
"email": "adam@adamazad.com",
"name": "Adam Azad",
"url": "https://adamazad.com"
},
"license": "ISC",
"dependencies": {
"@babel/preset-typescript": "^7.10.1",
"@hapi/boom": "^9.1.0",
"@hapi/catbox-memory": "^5.0.0",
"@hapi/hapi": "^20.0.1",
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^8.2.0",
"@types/hapi": "^18.0.3",
"@types/hapi-auth-bearer-token": "^6.1.1",
"@types/hapi__catbox-memory": "^4.1.1",
"@types/hapi__hapi": "^20.0.2",
"@types/jest": "^26.0.15",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.161",
"@types/mongoose": "^5.7.36",
"@types/mongoose-delete": "^0.5.1",
"@types/mongoose-unique-validator": "^1.0.4",
"@types/node": "^14.10.1",
"@types/validator": "^13.1.0",
"anonymous-animals": "^1.0.0",
"bcrypt": "^4.0.1",
"dotenv": "^8.2.0",
"hapi-auth-bearer-token": "^8.0.0",
"hapi-rate-limit": "^5.0.0",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"cross-env": "^7.0.2",
"lodash": "^4.17.20",
"module-alias": "^2.2.2",
"mongodb": "^3.6.3",
"mongoose": "^5.10.10",
"mongoose-delete": "^0.5.2",
"mongoose-unique-validator": "^2.0.3",
"typescript": "^4.0.2",
"validator": "^13.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-typescript": "^7.10.1",
"@babel/preset-env": "^7.9.5",
"@shelf/jest-mongodb": "^1.2.3",
"@types/faker": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-jest": "^26.1.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"faker": "^5.1.0",
"jest": "^26.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0"
}
}