-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
{
"name": "authentication-service",
"version": "0.1.3",
"description": "Service for authenticating requests with JWTs",
"main": "src/app.ts",
"author": "Evan Moncuso",
"license": "MIT",
"keywords": [
"node",
"typescript",
"express"
],
"scripts": {
"build": "tsc",
"build:dev": "tsc -w",
"build:docker": "docker build --tag evanmoncuso/authentication-service .",
"develop": "source .private/local.sh && concurrently \"yarn run build:dev\" \"yarn run start:dev\"",
"start": "node dist/app.js",
"start:dev": "nodemon dist/app.js",
"test": "yarn run test:lint && yarn run test:jest",
"test:jest": "jest",
"test:lint": "eslint . --ext .js,.ts"
},
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.0.2",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.24"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "~1.19.0",
"@types/cors": "~2.8.6",
"@types/express": "~4.17.3",
"@types/jest": "^25.1.4",
"@types/jsonwebtoken": "^8.3.9",
"@types/node": "~13.9.0",
"@types/redis": "^2.8.17",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.2.4",
"nodemon": "~2.0.2",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.16.x"
}
}