-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 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
69
70
71
72
73
{
"name": "@hhbttl/ms-auth",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"docker:dev": "docker-compose -f docker/docker-compose.development.yml up",
"docker:dev:rebuild": "docker-compose -f docker/docker-compose.development.yml build",
"docker:debug": "docker-compose -f docker/docker-compose.development.yml -f docker/docker-compose.debug.yml up",
"docker:prod": "docker-compose -f ./docker/docker-compose.prod.local.yml build --no-cache && docker-compose -f ./docker/docker-compose.prod.local.yml up",
"build": "(rm -rf ./build || true) && yarn tsc && yarn ef-tspm",
"test": "jest --watchAll --verbose",
"test:debug": "node --inspect node_modules/.bin/jest --watchAll --runInBand",
"bcrypt": "npm rebuild [email protected] --update-binary"
},
"dependencies": {
"bcrypt": "3.0.7",
"fastify": "2.11.0",
"jwt-simple": "0.5.6",
"mongoose": "5.8.3",
"ramda": "0.26.1"
},
"devDependencies": {
"@ef-carbon/tspm": "2.2.5",
"@types/bcrypt": "3.0.0",
"@types/jest": "24.0.25",
"@types/jwt-simple": "0.5.33",
"@types/mongoose": "5.5.36",
"@types/node": "13.1.1",
"@types/ramda": "0.26.39",
"@types/supertest": "2.0.8",
"jest": "24.9.0",
"jest-date-mock": "1.0.7",
"mongodb-memory-server": "6.2.1",
"nodemon": "2.0.2",
"pino-pretty": "3.5.0",
"supertest": "4.0.2",
"ts-jest": "24.2.0",
"ts-node": "8.5.4",
"tsconfig-paths": "3.9.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.7.4"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/build/",
"/dist/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/build/",
"/dist/"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"setupFiles": [
"jest-date-mock"
],
"rootDir": ".",
"moduleNameMapper": {
"^@app/(.*)$": "<rootDir>/src/$1"
}
},
"prettier": {
"singleQuote": true
}
}