-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"name": "typescript-node-template",
"version": "0.1.0",
"description": "A modern typescript node.js service template!",
"main": "app.js",
"scripts": {
"purge": "rm -rf node_modules package-lock.json && npm run clean",
"clean": "rm -rf build .nyc_output coverage",
"lint": "eslint src",
"build": "npm run clean && npm run lint && tsc -p .",
"start": "npm run build && node build/app.js",
"test": "npm run lint && nyc mocha src test",
"docker": "docker build -t typescript-node-template ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flowkap/typescript-node-template.git"
},
"keywords": [
"node",
"node.js",
"typescript",
"ts",
"service",
"template",
"mocha",
"chai",
"nyc",
"ts-node",
"sinon",
"eslint",
"sonarts"
],
"author": "flowkap",
"license": "MIT",
"bugs": {
"url": "https://github.com/Flowkap/typescript-node-template/issues"
},
"homepage": "https://github.com/Flowkap/typescript-node-template#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/chai": "4.2.14",
"@types/chai-as-promised": "7.1.3",
"@types/mocha": "8.0.4",
"@types/node": "14.14.7",
"@types/sinon": "9.0.8",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "7.13.0",
"eslint-plugin-sonarjs": "0.5.0",
"mocha": "8.2.1",
"nyc": "15.1.0",
"sinon": "9.2.1",
"source-map-support": "0.5.19",
"ts-node": "9.0.0",
"typescript": "4.0.5"
},
"dependencies": {
"fastify": "3.8.0"
}
}