-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
43
44
45
46
47
48
49
50
51
52
{
"name": "node-typescript",
"version": "0.0.1",
"scripts": {
"start": "ts-node-dev -r ./src/env.ts --respawn src/server.ts",
"test": "mocha -r ts-node/register -r ./src/env.ts specs/**/*.spec.ts",
"test:tdd": "npm run test -- -w --watch-files \"./**/*?(.spec).ts\"",
"lint": "tslint --fix -c 'tslint.json' -e './node_modules/**/*' './**/*.ts'",
"build": "tsc -P ./tsconfig.json",
"coverage": "nyc npm run test"
},
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/codermarcos/scaffolding-node-typescript.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codermarcos/scaffolding-node-typescript/issues"
},
"homepage": "https://github.com/codermarcos/scaffolding-node-typescript#readme",
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/morgan": "^1.9.0",
"@types/chai": "^4.2.11",
"tslint": "^6.1.1",
"@types/express": "^4.17.4",
"@types/got": "^9.6.9",
"@types/mocha": "^7.0.2",
"@types/mock-require": "^2.0.0",
"@types/node": "^13.11.0",
"@types/sinon": "^7.5.1",
"chai": "^4.2.0",
"husky": "^4.2.0",
"mocha": "^7.0.0",
"mock-require": "^3.0.3",
"nock": "^12.0.3",
"sinon": "^9.0.1",
"ts-node-dev": "^1.0.0-pre.44",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"nyc": "^14.1.1"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-extended": "^2.8.0",
"express": "^4.17.1",
"got": "^10.7.0",
"morgan": "^1.10.0"
}
}