forked from microsoft/TypeScript-Node-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.51 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
{
"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": {
"clean": "rimraf .dist .lint .coverage .nyc_output",
"build": "babel src --out-dir .dist --extensions \".ts,.tsx\"",
"lint": "eslint \"{src,test}/**/*.{js,ts}\" || eslint \"{src,test}/**/*.{js,ts}\" -f node_modules/eslint-detailed-reporter/lib/detailed.js -o .lint/index.html",
"test": "nyc mocha"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.7.2",
"@babel/register": "^7.9.0",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.8",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"acorn": "^7.1.1",
"babel-plugin-istanbul": "^5.1.1",
"chai": "^4.2.0",
"eslint": "^6.4.0",
"eslint-detailed-reporter": "^0.8.0",
"mocha": "^7.0.0",
"mochawesome": "^5.0.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.3"
}
}