-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.39 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
{
"name": "auth-service",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"helpme": "just -l"
},
"dependencies": {
"@fastify/oauth2": "^7.0.0",
"@fastify/static": "^6.0.0",
"@rockyj/async-utils": "^1.0.5",
"bcrypt": "^5.0.1",
"camelcase-keys": "^6.0.0",
"dotenv": "^16.0.0",
"fastify": "^4.0.0",
"google-auth-library": "^7.14.1",
"jsonwebtoken": "^9.0.0",
"knex": "^3.1.0",
"openpgp": "^5.2.0",
"pg": "^8.13.0",
"purify-ts": "^1.2.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/concurrently": "^5.2.1",
"@types/config": "^0.0.38",
"@types/jest": "^29.0.0",
"@types/js-yaml": "^4.0.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.18.0",
"@types/pg": "^7.14.11",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"concurrently": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^29.0.0",
"nodemon": "^2.0.7",
"pem-jwk": "^2.0.0",
"prettier": "^2.2.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.6.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}