-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "express-typescript-starter",
"version": "0.1.0",
"description": "A starting point for Node.js express apps with TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/TypeScript-Node-Starter"
},
"author": "Bowden Kelly",
"license": "MIT",
"scripts": {
"debug": "tsc && npm run watch-debug",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "jest --forceExit --coverage --verbose",
"watch-ts": "tsc -w"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"clipboardy": "^2.3.0",
"dotenv": "^8.2.0",
"lodash.camelcase": "^4.3.0",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/cheerio": "^0.22.22",
"@types/eslint": "^6.1.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.7.8",
"@types/nodemailer": "^6.2.1",
"@types/request": "^2.48.5",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4.2.0",
"eslint": "^6.4.0",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}