-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.69 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "turret",
"version": "0.0.1",
"description": "An open authentication and authorisation platform",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"watch": "nodemon src/index.js",
"test": "jest",
"test:e2e": "codeceptjs run --steps --config e2e",
"lint": "eslint --cache --fix src",
"format": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rosswilson/turret.git"
},
"keywords": [
"oidc",
"authentication",
"authorisation",
"tokens",
"jwt"
],
"author": "Ross Wilson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rosswilson/turret/issues"
},
"homepage": "https://github.com/rosswilson/turret#readme",
"dependencies": {
"aws-sdk": "^2.668.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.3.0",
"pug": "^3.0.1",
"sequelize": "^6.3.3",
"uuid": "^8.0.0"
},
"devDependencies": {
"codeceptjs": "^3.0.5",
"eslint": "^8.10.0",
"eslint-plugin-codeceptjs": "^1.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": ">=10",
"node-mocks-http": "^1.8.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"puppeteer": "^13.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.js": [
"yarn lint",
"yarn format"
]
},
"jest": {
"setupFiles": [
"dotenv/config"
],
"clearMocks": true
}
}