-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
28 lines (28 loc) · 943 Bytes
/
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
{
"name": "poap2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"ganache": "ganache-cli --port 9545 --deterministic --noVMErrorsOnRPCResponse",
"contracts:build": "./scripts/build-contracts.sh",
"db:reset": "./scripts/resetdb.sh dev && ./scripts/resetdb.sh test && yarn db:populate",
"db:populate": "psql -h localhost -U poap poap_dev < ./db/data-dump.sql",
"contracts:deploy:dev": "./scripts/deploy-ganache.sh",
"contracts:migrate:dev": "(cd server; ts-node src/migrate.ts writecontract)",
"start:client": "(cd client; yarn start)",
"start:server": "(cd server; yarn start:dev)"
},
"private": true,
"author": "Mariano Cortesi <mcortesi@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/http-errors": "^1.6.1",
"ts-node": "^8.1.0",
"typechain": "^0.3.14",
"typescript": "^3.4.5"
},
"dependencies": {
"http-errors": "^1.7.2"
}
}