-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
26 lines (26 loc) · 927 Bytes
/
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
{
"name": "docker-node-typescript",
"version": "1.0.2",
"description": "A starter project to quickly build NodeJS apps using Docker and Typescript, with best practices in mind",
"scripts": {
"build": "gulp copy; gulp watch & tsc-watch -p . --onSuccess \"node dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["docker", "node", "typescript", "starter", "docker node typescript", "docker node", "docker typescript"],
"author": "Stephen Gardner ([email protected])",
"license": "ISC",
"homepage": "https://github.com/stephengardner/docker-node-typescript",
"dependencies": {
"express": "^4.10.2",
"gulp": "^3.9.1",
"socket.io": "^1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/stephengardner/docker-node-typescript"
},
"devDependencies": {
"@types/express": "^4.11.0",
"@types/node": "^8.5.8"
}
}