-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
{
"name": "nko2018-p2pwithme",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Hackbit/nko2018-p2pwithme.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hackbit/nko2018-p2pwithme/issues"
},
"homepage": "https://github.com/Hackbit/nko2018-p2pwithme#readme",
"scripts": {
"build": "babel ./src --out-dir dist --extensions \".ts\"",
"dev:cs": "nodemon --watch demo/client-server --exec node demo/client-server/server.js",
"dev": "nodemon -e ts --exec node --require dotenv-safe/config --require ts-node/register src/server.ts",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-typescript": "7.1.0",
"@types/ejs": "2.6.0",
"@types/express": "4.16.0",
"@types/request": "2.48.0",
"@types/uuid": "3.4.4",
"@types/ws": "6.0.1",
"dotenv-safe": "6.1.0",
"nodemon": "1.18.5",
"typescript": "3.1.3"
},
"dependencies": {
"body-parser": "1.18.3",
"ejs": "2.6.1",
"express": "4.16.4",
"request": "2.88.0",
"ts-node": "7.0.1",
"uuid": "3.3.2",
"ws": "6.1.0"
}
}