-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.83 KB
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
{
"name": "@sonic-inc/sonic-validators",
"version": "0.0.1",
"description": "Sonic Validators",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "rm -rf ./lib && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/sonic-technology/sonic-validators.git"
},
"author": "Sonic Technologies GmbH",
"license": "ISC",
"bugs": {
"url": "https://github.com/sonic-technology/sonic-validators/issues"
},
"homepage": "https://github.com/sonic-technology/sonic-validators#readme",
"dependencies": {
"@types/ua-parser-js": "^0.7.36",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"bucks-js": "^2.0.2",
"config": "^3.3.9",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-validator": "^6.14.2",
"helmet": "^6.0.0",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.1.0",
"moment": "^2.29.4",
"otplib": "^12.0.1",
"pg": "^8.8.0",
"prettier": "^2.8.4",
"speakeasy": "^2.0.0",
"typeorm": "^0.3.10",
"ua-parser-js": "^1.0.32",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/config": "^3.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/luxon": "^3.1.0",
"@types/node": "^16.18.3",
"@types/speakeasy": "^2.0.7",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}