-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 779 Bytes
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
{
"name": "contractfactory",
"version": "1.0.0",
"description": "",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"start": "node node_modules/.bin/webpack-dev-server --content-base app",
"build": "truffle compile && NODE_ENV=production node node_modules/.bin/webpack && cp app/index.html build/app/index.html && cp app/app.css build/app/app.css"
},
"author": "",
"license": "ISC",
"devDependencies": {
"create-html": "^4.0.0",
"truffle": "^3.4.9",
"truffle-solidity-loader": "^0.0.8",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"bluebird": "^3.5.0",
"jquery": "^3.2.1",
"truffle-contract": "^2.0.5",
"web3": "0.20.1"
}
}