-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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": "conways-game-solidity-ethereum",
"version": "0.0.2",
"description": "Conway's Game of Life Written for Ethereum",
"main": "false",
"directories": {
"test": "test"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^1.2.2"
},
"devDependencies": {
"@metamask/detect-provider": "^1.2.0",
"crypto-browserify": "^3.12.0",
"gh-pages": "^3.1.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"prettier": "^2.2.1",
"source-map-loader": "^2.0.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.1",
"truffle-contract": "^4.0.31",
"url": "^0.11.0",
"util": "^0.12.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"scripts": {
"start": "node server/main.js",
"test": "truffle test",
"dev": "node_modules/.bin/webpack && node server/main.js",
"webpack": "node_modules/.bin/webpack --watch",
"format": "prettier ./client/app.js --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conwaysgame/solidity-ethereum.git"
},
"keywords": [
"game",
"of",
"life",
"conways",
"game",
"ethereum"
],
"author": "Dan Hough",
"license": "ISC",
"bugs": {
"url": "https://github.com/conwaysgame/solidity-ethereum/issues"
},
"homepage": "https://github.com/conwaysgame/solidity-ethereum#readme"
}