-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.75 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
52
53
{
"name": "meschain",
"version": "1.1.2",
"description": "Blockchain based messanger",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:server": "cd server && nodemon",
"build:server": "cd server && rimraf build && rimraf static && tsc",
"build:script": "cd scripts && rimraf build && webpack --config webpack.prod.js",
"dev:script": "cd scripts && webpack serve --hot --config webpack.dev.js",
"copy": "copyfiles -f \"./scripts/dist/*.*\" \"./server/static\"",
"start": "cd server && node ./build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whoanuragverma/meschain.git"
},
"author": "Anurag Verma",
"license": "MIT",
"bugs": {
"url": "https://github.com/whoanuragverma/meschain/issues"
},
"homepage": "https://github.com/whoanuragverma/meschain#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"js-sha256": "^0.9.0",
"peer": "^0.6.1",
"peerjs": "^1.3.1",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"socket.io": "^3.1.1",
"socket.io-client": "^3.1.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"copyfiles": "^2.4.1",
"dotenv-webpack": "^6.0.0",
"html-webpack-plugin": "^5.0.0",
"nodemon": "^2.0.7",
"ts-loader": "^8.0.15",
"ts-node": "^9.1.1",
"webpack": "^5.21.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
}
}