-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "node-starter-template",
"version": "0.0.1",
"description": "A starting point for Node.js express apps with TypeScript and mySql",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/zozzozm/node-starter-template"
},
"scripts": {
"build": "npm run clean && gulp",
"clean": "rimraf ./dist",
"dev": "nodemon --watch src/**/*.ts --ignore src/**/*.spec.ts --exec ts-node src/app.ts",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"start": "npm run build && node ./dist/app.js",
"tsc": "tsc",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"author": "zoz.zozm@gmail.com",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.0.10",
"gulp": "^4.0.2",
"gulp-apidoc": "^0.2.8",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"gulp-util": "^3.0.8",
"nodemon": "^1.19.1",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/socket.io": "^2.1.11",
"@types/ws": "^7.2.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"pug": "^2.0.4",
"socket.io": "^2.3.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.9.0"
}
}