-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
80 lines (80 loc) · 1.97 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
77
78
79
80
{
"name": "@opengovsg/mockpass",
"version": "4.3.4",
"description": "A mock SingPass/CorpPass server for dev purposes",
"main": "app.js",
"bin": {
"mockpass": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index",
"cz": "git-cz",
"lint": "eslint lib",
"lint-fix": "eslint --fix lib",
"prepare": "node .husky/install.mjs",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opengovsg/mockpass.git"
},
"keywords": [
"mock",
"test",
"singpass",
"corppass"
],
"author": "Government Technology Agency of Singapore (https://www.tech.gov.sg)",
"license": "MIT",
"bugs": {
"url": "https://github.com/opengovsg/mockpass/issues"
},
"homepage": "https://github.com/opengovsg/mockpass#readme",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"base-64": "^1.0.0",
"cookie-parser": "^1.4.3",
"dotenv": "^16.0.0",
"expiry-map": "^2.0.0",
"express": "^4.16.3",
"jose": "^5.2.3",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"mustache": "^4.2.0",
"node-jose": "^2.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/travis-cli": "^19.0.3",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.0.0",
"globals": "^15.9.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.0.1",
"pinst": "^3.0.0",
"prettier": "^2.0.5"
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx)": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}