-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.95 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
{
"name": "truffle-init-webpack",
"version": "0.0.1",
"description": "Frontend example using truffle v3",
"scripts": {
"comment": "ignore styles module is used to make mocha ignore css imports",
"_test": "echo \"e.g. mocha --require ignore-styles --recursive --compilers js:babel-register --reporter dot client/test server/test\" && exit 1",
"test": "mocha --require ignore-styles --recursive ./webTest",
"lint": "eslint ./",
"build": "webpack",
"dev": "webpack-dev-server",
"truffle": "truffle",
"truffleTest": "truffle -- test ./truffleTest/*",
"testrpc": "testrpc --account='0x21cd335e535779771ca7799a72088c07540ecd4ff521d767a947bba776bbd4f2,0xffffffffffffffff' --account='0xe228f3d01e0dd8f1c1870f4151878f1291d78ab2f458ae9671f9fb0d5f36ef6a,0xffffffffffffffff'"
},
"author": "Douglas von Kohorn",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.1",
"eslint": "^3.14.0",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.0",
"ethereumjs-testrpc": "^3.0.3",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"html-webpack-plugin": "^2.28.0",
"ignore-styles": "^5.0.1",
"json-loader": "^0.5.4",
"node-sass": "^4.5.0",
"sass-loader": "^6.0.2",
"style-loader": "^0.13.1",
"truffle": "^3.1.9",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"truffle-contract": "^1.1.6",
"web3": "^0.18.2"
}
}