-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
70 lines (70 loc) · 2.64 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
69
70
{
"name": "Contractor",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/alto-io/contractor"
},
"author": {
"name": "Paul Gadi",
"url": "https://outplay.games"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"node": ">=0.12"
},
"scripts": {
"demo": "yarn ipfs:deploy:erc1155 && yarn sol:deploy:rinkeby:reset && yarn mint:erc1155",
"ipfs:deploy:erc1155": "node scripts/erc1155_deploy_to_ipfs.js",
"sol:deploy": "truffle migrate --reset --compile-all",
"sol:deploy:rinkeby": "truffle migrate --network rinkeby",
"sol:deploy:rinkeby:reset": "truffle migrate --network rinkeby --reset --compile-all",
"mint:erc1155": "node scripts/advanced/mint.js",
"sol:test": "truffle test",
"clean:dependencies": "rimraf ./**/node_modules",
"clean:builds": "rimraf ./**/build",
"clean": "concurrently --kill-others-on-fail \"yarn clean:dependencies\" \"yarn clean:builds\"",
"lint": "yarn workspace @contractor/client lint; yarn workspace @contractor/server lint",
"lint:fix": "yarn workspace @contractor/client lint:fix; yarn workspace @contractor/server lint:fix",
"start:common": "yarn workspace @contractor/common start",
"start:client": "yarn workspace @contractor/client start",
"start:server": "yarn workspace @contractor/server start",
"start": "yarn build:common && concurrently --kill-others-on-fail \"yarn start:common\" \"yarn start:client\" \"yarn start:server\"",
"build:common": "yarn workspace @contractor/common build",
"build:client": "yarn workspace @contractor/client build",
"build:server": "yarn workspace @contractor/server build",
"build:move": "mv ./packages/client/build ./packages/server/build/public",
"build": "yarn build:common && yarn build:client && yarn build:server && yarn build:move",
"serve": "yarn workspace @contractor/server serve",
"postinstall": "rimraf node_modules/@types/react-native"
},
"dependencies": {
"@openzeppelin/contracts": "2.5.0",
"axios": "^0.19.2",
"base-path-converter": "^1.0.2",
"concurrently": "^4.1.1",
"dotenv": "^8.2.0",
"form-data": "^3.0.0",
"multi-token-standard": "github:ProjectOpenSea/multi-token-standard",
"openzeppelin-solidity": "2.1.3",
"recursive-fs": "^2.1.0",
"truffle": "^5.0.2",
"truffle-flattener": "^1.3.0",
"truffle-hdwallet-provider": "^1.0.17",
"tslint": "^5.19.0"
},
"resolutions": {
"cids/multicodec": "1.0.1",
"ipfs-bitswap/multicodec": "0.5.5",
"**/redis": "3.0.2"
},
"devDependencies": {
"rimraf": "^2.6.2",
"typescript": "^3.5.3"
}
}