-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 2.01 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
{
"name": "credao",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": ". ./.env && node server",
"build": "next build",
"build:aragon": "git submodule update --init && cd aragon && yarn && export NODE_ENV=development && npm run build:local",
"start": ". ./.env && NODE_ENV=production node server",
"reset": ". ./.env && npm run db:reset && npm run dev",
"db:drop": ". ./.env && dropdb -h localhost credao",
"db:create": ". ./.env && createdb -h localhost credao",
"db:setup": ". ./.env && npm run db:create && psql -h localhost -d credao -f db.sql",
"db:reset": ". ./.env && npm run db:drop && npm run db:setup",
"psql": ". ./.env && psql -h localhost -d credao"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aragon/os": "^4.3.0",
"@aragon/ui": "^0.40.2",
"@graphile-contrib/pg-many-to-many": "^1.0.0-beta.10",
"babel-plugin-styled-components": "^1.10.6",
"base64url": "^3.0.1",
"bignumber.js": "^9.0.0",
"connect-pg-simple": "^6.0.1",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"eth-ens-namehash": "^2.0.8",
"ethereum-checksum-address": "^0.0.3",
"ethereumjs-util": "^6.1.0",
"ethers": "^4.0.37",
"express-boom": "^3.0.0",
"express-session": "^1.16.2",
"fs-extra": "^8.1.0",
"graphile-utils": "^4.4.5",
"grommet": "^2.7.8",
"grommet-controls": "^2.0.0-alpha1",
"grommet-icons": "^4.3.0",
"ipfs-http-client": "^36.0.0",
"isomorphic-unfetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"merkle-tree-solidity": "^1.0.8",
"mkdirp": "^0.5.1",
"next": "^9.0.5",
"next-transpile-modules": "^2.3.1",
"pg-boss": "^3.1.7",
"pg-pubsub": "^0.5.0",
"postgraphile": "^4.4.3",
"postgraphile-plugin-derived-field": "^1.0.0-alpha.7",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-markdown": "^4.2.2",
"sourcecred": "^0.4.0",
"styled-components": "^4.4.0",
"web3": "^1.2.1"
},
"devDependencies": {
"cross-env": "^5.2.1"
}
}