-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.45 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
81
82
83
84
85
86
87
{
"name": "@isomerpages/site-creation-backend",
"version": "1.0.0",
"description": "Creates Isomer sites from FormSG site creation requests",
"main": "build/index.js",
"bin": {
"generate-site": "./dist/cli.js"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "echo 'No tests implemented'",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only --inspect -- src/index.ts",
"start": "node build/index.js",
"prepare": "npm run build"
},
"author": "Open Government Products, GovTech Singapore (https://open.gov.sg)",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/isomerpages/site-creation-backend.git"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/travis-cli": "^11.0.0",
"@types/cloudflare": "^2.7.7",
"@types/convict": "^5.2.1",
"@types/express": "^4.17.7",
"@types/fs-extra": "^9.0.2",
"@types/jsonwebtoken": "^8.5.6",
"@types/promise-retry": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.5.2",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.63"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "commitlint --from origin/master --to HEAD --verbose"
}
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx)": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@octokit/rest": "^18.0.6",
"@opengovsg/formsg-sdk": "^0.8.2",
"@types/morgan": "^1.9.1",
"@types/nodemailer": "^6.4.0",
"@types/yargs": "^15.0.9",
"aws-sdk": "^2.788.0",
"cloudflare": "^2.9.1",
"convict": "^6.0.0",
"cross-fetch": "^3.0.6",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"isomorphic-git": "^1.7.8",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"netlify": "^4.9.0",
"nodemailer": "^6.4.15",
"promise-retry": "^2.0.1",
"serverless-http": "^2.6.0",
"typescript": "^4.0.5",
"winston": "^3.3.3",
"yargs": "^16.1.0"
}
}