This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "@digicatapult/wasp-authentication-service",
"version": "0.1.119",
"description": "Authentication Service for WASP",
"main": "app/index.js",
"type": "module",
"scripts": {
"test": "NODE_ENV=test mocha --config ./test/mocharc.json ./test",
"lint": "eslint .",
"depcheck": "depcheck",
"start": "node app/index.js",
"dev": "NODE_ENV=dev nodemon app/index.js | pino-colada",
"coverage": "c8 npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/wasp-authentication-service.git"
},
"keywords": [
"WASP"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/wasp-authentication-service/issues"
},
"homepage": "https://github.com/digicatapult/wasp-authentication-service#readme",
"engines": {
"node": ">=18.13.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.18.3",
"express-openapi": "^12.1.3",
"jwt-simple": "^0.5.6",
"knex": "^3.1.0",
"moment": "^2.30.1",
"pg": "^8.11.3",
"pino": "^8.19.0",
"pino-http": "^8.6.1",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"validator": "^13.11.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-import-assertions": "^7.23.3",
"c8": "^8.0.1",
"chai": "^4.4.1",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.3.0",
"nodemon": "^3.1.0",
"pino-colada": "^2.2.2",
"prettier": "^3.2.5",
"supertest": "^6.3.4"
}
}