This repository was archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.37 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@sakuraapi/auth-oauth-authority",
"version": "0.1.2",
"description": "SakuraAPI oAuth Authority Plugin",
"author": "Jean-Pierre E. Poveda",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/src/**/!(*.spec).js",
"dist/src/**/!(*.spec).d.ts",
"dist/index.*"
],
"scripts": {
"build": "scripts/build.sh",
"docker:local-compose-down": "docker-compose --file docker/local-test.yml down",
"docker:local-compose-up": "scripts/docker:local-compose-up.sh",
"install": "chmod u+x scripts/*.sh || true ; scripts/install.sh",
"start": "scripts/start.sh",
"test": "scripts/test.sh",
"test:db": "SAVE_DB=true scripts/test:db.sh"
},
"dependencies": {
"@sakuraapi/core": "^0.11.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.17.1",
"colors": "^1.2.1",
"cors": "^2.8.3",
"debug": "^3.1.0",
"ejs": "^2.5.6",
"email-templates": "^2.6.0",
"encodeurl": "^1.0.2",
"express": "^4.16.3",
"generate-password": "^1.4.0",
"helmet": "^3.12.0",
"moment": "^2.21.0",
"mongodb": "^2.2.26",
"node-sass": "^4.8.3",
"nodemailer": "^4.6.3",
"request": "^2.85.0",
"request-promise-native": "^1.0.4",
"rxjs": "^5.5.7",
"urlsafe-base64": "^1.0.0",
"uuid": "^3.2.1",
"winston": "^2.4.1",
"winston-aws-cloudwatch": "^1.6.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@sakuraapi/auth-native-authority": "^0.3.0-15",
"@types/bcrypt": "^1.0.0",
"@types/cors": "^2.8.1",
"@types/debug": "0.0.30",
"@types/deep-diff": "0.0.31",
"@types/ejs": "^2.5.0",
"@types/email-templates": "0.0.33",
"@types/express": "^4.11.1",
"@types/jasmine": "^2.8.6",
"@types/jsonwebtoken": "^7.2.6",
"@types/mongodb": "^2.2.3",
"@types/node": "^9.4.7",
"@types/node-sass": "^3.10.32",
"@types/nodemailer": "^1.3.32",
"@types/request-promise-native": "^1.0.14",
"@types/supertest": "^2.0.0",
"@types/urlsafe-base64": "^1.0.28",
"@types/uuid": "^3.4.1",
"deep-diff": "^0.3.8",
"istanbul": "^0.4.5",
"jasmine": "^3.1.0",
"jasmine-reporters": "^2.3.0",
"jasmine-spec-reporter": "^4.1.1",
"jsonwebtoken": "^8.2.0",
"nodemon": "^1.17.2",
"nsp": "^3.2.1",
"source-map-support": "^0.5.4",
"supertest": "^3.0.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}