-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.69 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
54
55
56
{
"name": "Tyche_Blockchain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"start": "npm run build-client && node index.js",
"dev": "npm run dev-client & npm run start-redis && nodemon index.js",
"dev-peer": "cross-env GENERATE_PEER_PORT='true' nodemon index.js",
"start-redis": "redis-server --daemonize yes",
"build-client": "npm run clean && parcel build client/src/index.html --out-dir client/dist",
"dev-client": "npm run clean && parcel client/src/index.html --out-dir client/dist",
"clean": "rm -rf .cache client/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jestemAria/Tyche_Blockchain.git"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jestemAria/Tyche_Blockchain/issues"
},
"homepage": "https://github.com/jestemAria/Tyche_Blockchain#readme",
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^23.6.0",
"nodemon": "^1.18.4"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.3",
"core-js": "^2.6.12",
"elliptic": "^6.4.1",
"express": "^4.16.3",
"hex-to-binary": "^1.0.1",
"history": "^4.7.2",
"parcel-bundler": "^1.12.3",
"react": "^16.6.0",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.6.0",
"react-router-dom": "^4.3.1",
"redis": "^2.8.0",
"request": "^2.88.0",
"uuid": "^3.3.2"
}
}