forked from toni-moreno/resistor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"author": {
"name": "Toni Moreno",
"company": "Toni Inc"
},
"name": "resistor",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "http://github.com/toni-moreno/resistor.git"
},
"bugs": {
"url": "http://github.com/toni-moreno/resistor/issues"
},
"license": "Apache-2.0",
"angular-cli": {},
"scripts": {
"clean": "rm -rf public",
"start": "concurrently \"bra run > ./log/braout.log 2>&1\" \"ng serve --proxy-config proxy.conf.json\" ",
"lint": "tslint \"src/**/*.ts\"",
"build:dev": "go run build.go build && ng build",
"build:prod": "go run build.go build && ng build --prod",
"build": "npm run clean && npm run build:prod",
"build:static": "go run build.go build-static && ng build --prod",
"postbuild": "go run build.go latest",
"test": "ng test",
"pree2e": "webdriver-manager update",
"e2e": "protractor"
},
"private": true,
"dependencies": {
"@angular/common": "2.4.1",
"@angular/compiler": "2.4.1",
"@angular/core": "2.4.1",
"@angular/forms": "2.4.1",
"@angular/http": "2.4.1",
"@angular/platform-browser": "2.4.1",
"@angular/platform-browser-dynamic": "2.4.1",
"@angular/router": "3.4.1",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"file-saver": "^1.3.3",
"jquery": "^2.2.3",
"lodash": "^4.17.2",
"moment": "^2.13.0",
"ng2-bootstrap": "1.1.16-9",
"reflect-metadata": "~0.1.8",
"rxjs": "5.0.1",
"systemjs": "0.19.31",
"ts-helpers": "^1.1.1",
"zone.js": "0.7.4"
},
"devDependencies": {
"@angular/compiler-cli": "2.4.1",
"@types/file-saver": "~0.0.0",
"@types/jasmine": "2.5.38",
"@types/lodash": "^4.14.44",
"@types/node": "^6.0.42",
"angular-cli": "1.0.0-beta.24",
"codelyzer": "~2.0.0-beta.1",
"concurrently": "^3.0.0",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "2.5.0",
"karma": "1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-remap-istanbul": "^0.2.1",
"protractor": "4.0.9",
"ts-node": "1.2.1",
"tslint": "^4.0.2",
"typescript": "~2.0.3",
"webdriver-manager": "10.2.5"
}
}