-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1012 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1012 Bytes
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
{
"name": "warsawjs-workshop-34-trainer-needed",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "git@github.com:G3F4/warsawjs-workshop-34-trainer-needed.git",
"author": "G3F4",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn --transpileOnly src/index.ts",
"lint": "tslint -c tslint.json 'src/**/*{.ts,.tsx}'",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*{.ts,.tsx}'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"websockets",
"web",
"socket",
"typescript",
"warsawjs"
],
"bugs": {
"url": "https://github.com/G3F4/websockets-boilerplate/issues"
},
"homepage": "https://github.com/G3F4/websockets-boilerplate#readme",
"dependencies": {
"@types/node": "12.6.2",
"@types/ws": "6.0.1",
"ts-node": "8.3.0",
"typescript": "3.5.3",
"ws": "7.1.0"
},
"devDependencies": {
"ts-lint": "4.5.1",
"ts-node-dev": "1.0.0-pre.40"
}
}