-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "typescript-node-boilerplate",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/*",
"dev:watch": "ts-node-dev --respawn src/index.ts",
"dev": "ts-node src/index.ts",
"format": "prettier --write 'src/**/*.{js,ts,json}'",
"start": "tsc && nodemon dist/index.js",
"server": "ts-node src/server.ts",
"tsc": "tsc",
"tscCheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koji/typescript-node-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/koji/typescript-node-boilerplate/issues"
},
"homepage": "https://github.com/koji/typescript-node-boilerplate#readme",
"devDependencies": {
"@types/imap": "^0.8.33",
"@types/nodemailer": "^6.4.1",
"@types/express": "^4.17.8",
"@types/multer": "^1.4.5",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.61",
"typescript": "^4.0.2"
},
"dependencies": {
"await-semaphore": "^0.1.3",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"global": "^4.4.0",
"imap": "^0.8.19",
"multer": "^1.4.2",
"nodemailer": "^6.4.18",
"nodemon": "^2.0.7",
"regex-adventure": "^1.1.2"
}
}