-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "auth-gist",
"version": "1.0.0",
"description": "Gist of an authorisation server, based on express-oauth-server.",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.8",
"@types/validator": "^13.1.1",
"aws-sdk": "^2.937.0",
"axios": "^0.21.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"csurf": "^1.11.0",
"db-migrate": "^0.11.11",
"db-migrate-mysql": "^2.1.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-oauth-server": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"mysql2": "^2.2.5",
"query-string": "^7.0.1",
"sequelize": "^6.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cookie-parser": "^1.4.2",
"@types/crypto-js": "^4.0.1",
"@types/csurf": "^1.11.1",
"@types/express": "^4.17.9",
"@types/express-oauth-server": "^2.0.3",
"@types/jest": "^26.0.16",
"@types/jsonwebtoken": "^8.5.2",
"@types/jwt-decode": "^3.1.0",
"@types/node": "^14.14.10",
"@types/query-string": "^6.3.0",
"@types/uuid": "^8.3.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"scripts": {
"start-dev": "yarn && nodemon --exec ts-node src/index.ts"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverageFrom": [
"sm-auth/src/services/**",
"sm-auth/src/data/**"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}