-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.39 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.39 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
{
"name": "reflect-web",
"version": "0.0.0",
"license": "GPL-3.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"prod-build": "npm run prebuild && ng build -prod",
"test": "ng test",
"lint": "npm run tslint && npm run stylelint",
"tslint": "ng lint",
"stylelint": "stylelint '**/*.scss' --syntax scss",
"e2e": "ng e2e",
"prebuild": "npm i && npm run lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^5.2.8",
"@angular/cdk": "^5.2.4",
"@angular/cli": "^1.7.3",
"@angular/common": "^5.2.8",
"@angular/compiler": "^5.2.8",
"@angular/compiler-cli": "^5.2.8",
"@angular/core": "^5.2.8",
"@angular/forms": "^5.2.8",
"@angular/http": "^5.2.8",
"@angular/material": "^5.2.4",
"@angular/material-moment-adapter": "^5.2.4",
"@angular/platform-browser": "^5.2.8",
"@angular/platform-browser-dynamic": "^5.2.8",
"@angular/router": "^5.2.8",
"@ngx-loading-bar/core": "^2.0.0",
"@types/crypto-js": "^3.1.43",
"@types/lodash": "^4.14.104",
"ag-grid": "^18.0.1",
"ag-grid-angular": "^18.0.1",
"ag-grid-enterprise": "^18.0.1",
"core-js": "^2.5.3",
"crypto-js": "^3.1.9-1",
"hammerjs": "^2.0.8",
"lodash": "^4.17.5",
"md2": "0.0.29",
"moment": "^2.21.0",
"ngx-cookie": "^2.0.1",
"ngx-restangular": "^2.1.0",
"rxjs": "^5.5.7",
"zone.js": "^0.8.20"
},
"devDependencies": {
"@angular-devkit/core": "^0.5.7",
"@angular-devkit/schematics": "^0.5.7",
"@angular/language-service": "^4.2.4",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^6.0.102",
"codelyzer": "~3.2.0",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "^2.0.4",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.4.2",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "^5.3.2",
"stylelint": "^9.2.0",
"ts-node": "~3.2.0",
"tslint": "~5.9.1",
"tslint-eslint-rules": "^5.1.0",
"typescript": "~2.6.2"
}
}