forked from RADAR-base/RADAR-Dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.82 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
85
86
87
88
89
{
"name": "radar-dashboard",
"version": "0.0.1",
"license": "Apache 2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:host": "ng serve --host 0.0.0.0",
"hmr": "ng serve --hmr -e=hmr",
"build": "ng build --prod",
"build:dev": "ng build",
"all": "npm run fix:css && npm run lint:all && npm run test:coverage && npm run e2e",
"lint": "ng lint --type-check",
"lint:css": "stylelint \"src/**/*.scss\"",
"lint:all": "npm run lint && npm run lint:css",
"test": "ng test",
"test:ci": "ng test --code-coverage --watch=false",
"test:coverage": "ng test --code-coverage --watch=false && open coverage/index.html",
"e2e": "ng e2e",
"fix:css": "npm run fix:stylefmt && npm run fix:stylelint",
"fix:stylefmt": "postcss \"src/**/*.scss\" -r",
"fix:stylelint": "stylelint \"src/**/*.scss\" --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^4.3.0",
"@angular/cdk": "^2.0.0-beta.8",
"@angular/common": "^4.3.0",
"@angular/compiler": "^4.3.0",
"@angular/core": "^4.3.0",
"@angular/forms": "^4.3.0",
"@angular/http": "^4.3.0",
"@angular/material": "^2.0.0-beta.8",
"@angular/platform-browser": "^4.3.0",
"@angular/platform-browser-dynamic": "^4.3.0",
"@angular/router": "^4.3.0",
"@ngrx/core": "^1.2.0",
"@ngrx/effects": "^2.0.4",
"@ngrx/store": "^2.2.3",
"core-js": "^2.4.1",
"d3": "^4.10.0",
"hammerjs": "^2.0.8",
"reselect": "^3.0.1",
"rxjs": "^5.4.2",
"ts-helpers": "^1.1.2",
"uuid": "^3.1.0",
"zone.js": "^0.8.12"
},
"devDependencies": {
"@angular/cli": "^1.2.1",
"@angular/compiler-cli": "^4.3.0",
"@angular/language-service": "^4.3.0",
"@ngrx/store-devtools": "^3.2.4",
"@types/d3": "^4.9.0",
"@types/hammerjs": "^2.0.34",
"@types/jasmine": "^2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^8.0.14",
"browserstack-local": "^1.3.0",
"codacy-coverage": "^2.0.2",
"codelyzer": "^3.1.2",
"coveralls": "^2.13.1",
"enhanced-resolve": "^3.3.0",
"jasmine-core": "^2.6.4",
"jasmine-spec-reporter": "^4.1.1",
"karma": "^1.7.0",
"karma-browserstack-launcher": "^1.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ngrx-store-freeze": "^0.1.9",
"postcss": "^6.0.7",
"postcss-cli": "^4.1.0",
"postcss-scss": "^1.0.2",
"protractor": "^5.1.2",
"sass-mq": "^3.3.2",
"stylefmt": "^6.0.0",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-order": "^0.6.0",
"ts-node": "^3.2.0",
"tslint": "^5.5.0",
"tslint-config-standard": "^6.0.1",
"tslint-language-service": "^0.9.6",
"typescript": "2.4.1"
}
}