-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "ts-seed",
"version": "0.0.1",
"description": "Starting point for node.js and typescript projects",
"main": "build/main.js",
"scripts": {
"test": "gulp test",
"build": "gulp",
"start": "gulp launch",
"clean": "gulp clean",
"debug": "gulp debug",
"lint": "gulp lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Dude29/ts-seed"
},
"license": "MIT",
"keywords": [
"tsc",
"node"
],
"author": "dude29",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/express": "^4.17.7",
"@types/gulp": "^4.0.6",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.2.0",
"gulp": "^4.0.2",
"gulp-run-command": "0.0.10",
"mocha": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"yargs": "^15.4.1"
},
"dependencies": {
"express": "^4.17.1",
"winston": "^3.2.1"
}
}