-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "ngx-embark-starter",
"version": "1.0.0",
"author": "Jeroen Ouwehand",
"description": "Starter Dapp with Embark and Angular 4",
"license": "MIT",
"keywords": [
"angular",
"embark",
"starter-app",
"blockchain",
"solidity",
"smartcontracts",
"dapp"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"prod": "ng prod --prod",
"lint": "ng lint",
"start:both": "ng serve && embark run",
"block": "embark blockchain",
"block:test": "embark simulator",
"test": "embark test"
},
"repository": "https://github.com/jeroenouw/EmbarkAngularStarter",
"dependencies": {
"@angular/animations": "^4.4.4",
"@angular/common": "^4.4.4",
"@angular/compiler": "^4.4.4",
"@angular/core": "^4.4.4",
"@angular/forms": "^4.4.4",
"@angular/http": "^4.4.4",
"@angular/platform-browser": "^4.4.4",
"@angular/platform-browser-dynamic": "^4.4.4",
"@angular/router": "^4.4.4",
"core-js": "^2.5.1",
"rxjs": "^5.4.3",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@angular/cli": "1.4.4",
"@angular/compiler-cli": "^4.4.4",
"@angular/language-service": "^4.4.4",
"@types/node": "~6.0.60",
"codelyzer": "~3.2.0",
"ethereumjs-testrpc": "^4.1.3",
"embark": "^2.5.2",
"mocha": "^2.2.5",
"solc": "^0.4.17",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~2.5.3",
"web3": "^1.0.0-beta.22",
"webpack": "^3.6.0"
}
}