-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "eth-card-game",
"private": true,
"scripts": {
"start": "webpack-dev-server --progress --mode development",
"build": "rimraf build/webpack && webpack --progress --mode production",
"build:dev": "webpack --progress --mode development",
"build:icons": "node src/frontend/icon-font/index.js",
"test": "standard && jest && truffle test",
"test:watch": "jest --watch",
"testrpc": "ganache-cli -d --db data -i 123456"
},
"dependencies": {
"classnames": "^2.2.5",
"core-js": "^2.5.6",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"web3": "^0.20.6"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.4",
"keccak": "^1.4.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"standard": "^10.0.3",
"truffle": "^4.1.11",
"webfonts-generator": "^0.4.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"standard": {
"env": {
"jest": true,
"mocha": true
},
"globals": [
"artifacts",
"contract",
"assert"
],
"ignore": [
"dist/"
]
},
"jest": {
"roots": [
"./src/frontend"
]
}
}