-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
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
54
55
{
"name": "diego-chain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./server",
"dev2": "HTTP_PORT=3002 P2P_PORT=5002 PEERS=ws://localhost:5001 npm run dev",
"dev3": "HTTP_PORT=3003 P2P_PORT=5003 PEERS=ws://localhost:5001 npm run dev",
"install": "git config --local commit.template .gitMessageTemplate.txt",
"set-commit-template": "git config --local commit.template .gitMessageTemplate.txt",
"start": "node ./server",
"test": "jest --watchAll",
"build": "webpack",
"watch": "concurrently -n --kill-others npm:test npm:dev npm:build",
"watchNodes": "concurrently -n --kill-others npm:dev2 npm:dev3"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.0.1",
"jest": "^23.5.0",
"nodemon": "^1.18.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"axios": "^0.18.0",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.18.3",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.1",
"express": "^4.16.3",
"g": "^2.0.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"uuid": "^3.3.2",
"webpack": "^4.17.2",
"ws": "^6.0.0"
},
"jest": {
"testEnvironment": "node"
}
}