-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.54 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": "blockchain-demo-clone",
"version": "1.0.0",
"description": "Visual blockchain demo - originally written by @anders94 this reimplementation is just practice",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"start": "webpack-dev-server --open",
"deploy": "webpack -p && firebase deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gherrer1/blockchain-demo-clone.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gherrer1/blockchain-demo-clone/issues"
},
"homepage": "https://github.com/Gherrer1/blockchain-demo-clone#readme",
"dependencies": {
"crypto-js": "^3.1.9-1",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"firebase-tools": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"style-loader": "^0.23.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}