-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 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
{
"name": "typescript-template",
"version": "1.0.4",
"description": "A complete Node.js project template using TypeScript and following general best practices.",
"keywords": [
"typescript",
"template"
],
"author": {
"name": "Chris Wells",
"url": "https://chriswells.io"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/chriswells0/node-typescript-template.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "npx jest --silent --verbose --forceExit --maxWorkers=1",
"clean": "rimraf build",
"build": "npm run clean && tsc",
"start": "npm run build && node build/index.js",
"dev": "nodemon src/index.ts"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.49",
"@types/nodemailer": "^6.4.7",
"@types/pdfmake": "^0.2.1",
"@types/ssh2-sftp-client": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.12",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^8.2.0",
"mocha": "^9.0.0",
"nyc": "^15.0.0",
"source-map-support": "^0.5.12",
"ts-node": "^10.0.0",
"typescript": "^4.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/crypto-js": "^4.1.1",
"@types/pdfkit": "^0.12.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"morgan": "^1.10.0",
"nodemailer": "^6.9.0",
"nodemon": "^2.0.19",
"path": "^0.12.7",
"pdfmake": "^0.2.5",
"roboto-font": "^0.1.0",
"sitka": "^1.0.5",
"ssh2-sftp-client": "^9.0.3"
}
}