forked from aragon/aragon-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.83 KB
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
{
"name": "@aragon/future-apps-payroll",
"version": "0.0.1",
"description": "",
"keywords": [
"app",
"aragon",
"dao",
"payroll"
],
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"author": "Aragon Association <legal@aragon.org>",
"contributors": [
"ßingen <bingen@aragon.one>",
"Lisandro Corbalán <lisandro.corbalan@altoros.com>",
"Sebastián Galiano <sebastian.galiano@altoros.com>"
],
"scripts": {
"build": "cd app && npm run build",
"compile": "truffle compile",
"dev": "aragon run --network rpc --http localhost:8001 --http-served-from ./app/dist",
"dev:reset": "npm run dev -- --reset",
"lint": "solium --dir ./contracts",
"start": "aragon run --network rpc --kit PayrollKit --kit-init @ARAGON_ENS",
"test": "TRUFFLE_TEST=true npm run ganache-cli:test",
"test:gas": "GAS_REPORTER=true npm test",
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"truffle:dev": "node_modules/.bin/truffle dev",
"ganache-cli:test": "./node_modules/@aragon/test-helpers/ganache-cli.sh",
"prepare": "npx apps-shared-scripts-prepare",
"install:frontend": "cd app && npm install",
"prepublishOnly": "truffle compile --all"
},
"files": [
"/arapp.json",
"/build",
"/contracts",
"/scripts",
"/test"
],
"dependencies": {
"@aragon/apps-finance": "2.1.0",
"@aragon/os": "4.0.1",
"@aragon/ppf-contracts": "1.0.2"
},
"devDependencies": {
"@aragon/apps-shared-migrations": "1.0.0",
"@aragon/apps-shared-minime": "1.0.0",
"@aragon/apps-shared-scripts": "^1.0.0",
"@aragon/apps-vault": "4.0.0",
"@aragon/cli": "^5.1.0",
"@aragon/test-helpers": "^1.0.1",
"eth-gas-reporter": "^0.1.12",
"ganache-cli": "^6.0.3",
"ethereumjs-abi": "^0.6.5",
"solidity-coverage": "0.5.11",
"solium": "^1.1.8"
}
}