forked from JoinColony/colonySDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.35 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@colony/colony-starter-angular",
"version": "1.0.0-beta.7",
"description": "A simple starter project for building with Colony",
"keywords": [
"colony",
"boilerplate",
"angular"
],
"license": "MIT",
"files": [
"/",
".gitignore"
],
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"scripts": {
"start-ganache": "colony service start-ganache",
"deploy-contracts": "colony service deploy-contracts",
"start-trufflepig": "colony service start-trufflepig",
"seed-network": "colony service seed-network",
"colony-setup": "colony service colony-setup",
"start": "ng serve",
"build": "ng build",
"test": "ng lint && ng test --progress=false"
},
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/cdk": "~7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/material": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"@colony/colony-cli": "^1.0.0-beta.7",
"@colony/colony-js-client": "^1.13.2",
"@colony/colony-js-contract-loader-http": "^1.12.0",
"@colony/purser-metamask": "^2.3.3",
"@colony/purser-software": "^1.2.6",
"buffer": "^5.2.1",
"ipfs": "^0.36.4",
"rxjs": "^6.5.2",
"web3": "^1.0.0-beta.55",
"web3-utils": "^1.0.0-beta.55",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-builders/dev-server": "~7.2.0",
"@angular-builders/custom-webpack": "~7.2.0",
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.7",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"jasmine-core": "^3.4.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "3.2.4"
},
"resolutions": {
"web3": "^1.0.0-beta.55"
},
"engines": {
"node": ">=10.13.0 <12.0.0"
},
"publishConfig": {
"access": "public"
}
}