-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.25 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
{
"name": "weather-service",
"version": "1.0.0",
"private": false,
"main": "dist/index.js",
"scripts": {
"d-push": "docker push registry.digitalocean.com/keithics/weather-service:latest",
"d-build": "docker build -t weather-service .",
"d-tag": "docker tag weather-service:latest registry.digitalocean.com/keithics/weather-service:latest",
"d-run": " docker run -it --name=weather-service --rm -p 8080:8080 weather-service",
"d": "npm run d-build && npm run d-tag && npm run d-push",
"build": "NODE_PATH=./src tsc",
"start": "node dist/index.js",
"test": "NODE_PATH=./src jest --coverage --verbose --runInBand --forceExit --detectOpenHandles",
"dev": "NODE_PATH=./src ts-node-dev --respawn --clear --transpile-only --rs src/index.ts",
"pretty": "npx prettier --write ./src",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx && npx prettier --check ./src && tsc --noEmit"
},
"dependencies": {
"@keithix/auth": "^2.0.1",
"@keithix/core": "^2.0.18",
"@keithix/errors": "^2.0.5",
"@keithix/joi-validators": "^2.0.6",
"@sentry/tracing": "^6.19.2",
"axios": "^0.26.0",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"express": "~4.17.1",
"helmet": "^4.6.0",
"jest": "^26.6.3",
"joi": "^17.4.0",
"lodash": "^4.17.21",
"mongoose": "5.12.9",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/joi": "^17.2.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"chalk": "^4.1.1",
"codelyzer": "^6.0.2",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"faker": "^5.5.3",
"husky": "^7.0.4",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"passport-jwt-mock": "^0.1.3",
"prettier": "^2.4.1",
"pretty-format": "^26.6.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"typescript": "4.4.4"
}
}