-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·101 lines (101 loc) · 3.57 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "SIGA",
"version": "0.1.2",
"description": "Angular 5+ and Bootstrap 4 web application",
"author": "AKKA Technologies",
"homepage": "https://www.akka-technologies.com/fr",
"repository": {
"type": "git"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:proxy": "ng serve --proxy-config proxy.conf.json",
"start:hmr": "ng serve --hmr",
"start:aot": "ng serve --aot",
"start:prod": "ng serve --prod",
"start:prod:aot": "ng serve --prod --aot",
"clean": "rm -rf ./dist ./documentation ./.sonarlint",
"clean:node": "rm -rf ./dist ./documentation ./.sonarlint ./node_modules",
"build": "npm run clean && ng build",
"build:prod": "npm run build -- --prod",
"build:prod:aot": "npm run build:prod -- --aot",
"build:ci": "npm run build:prod && npm run build:prod:aot",
"build:demo": "npm run build:prod:aot -- --base-href \"http://akveo.com/ng2-admin/\"",
"test": "ng test -sr",
"lint": "ng lint",
"lint:styles": "stylelint ./src/app/**/*.scss",
"lint:ci": "npm run lint && npm run lint:styles",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "ng e2e",
"compodoc": "./node_modules/.bin/compodoc -s -p ./tsconfig.json -n siga-documentation --includes src/assets/compodoc",
"compodoc:no-coverage": "./node_modules/.bin/compodoc -s -p ./tsconfig.json -n siga-documentation --includes src/assets/compodoc --disableCoverage -t",
"compodoc:writing": "./node_modules/.bin/compodoc -s -p ./tsconfig.json -n siga-documentation --includes src/assets/compodoc -w"
},
"private": true,
"dependencies": {
"@angular/animations": "^5.1.2",
"@angular/cdk": "^5.1.1",
"@angular/common": "^5.1.2",
"@angular/compiler": "^5.1.2",
"@angular/core": "^5.1.2",
"@angular/flex-layout": "^2.0.0-beta.12",
"@angular/forms": "^5.1.2",
"@angular/http": "^5.1.2",
"@angular/material": "^5.1.1",
"@angular/platform-browser": "^5.1.2",
"@angular/platform-browser-dynamic": "^5.1.2",
"@angular/platform-server": "^5.1.2",
"@angular/router": "^5.1.2",
"@ng-bootstrap/ng-bootstrap": "1.0.0-beta.5",
"@ngx-translate/core": "8.0.0",
"@ngx-translate/http-loader": "2.0.0",
"bootstrap": "4.0.0-alpha.6",
"chroma-js": "1.3.5",
"core-js": "2.5.3",
"font-awesome": "4.7.0",
"hammerjs": "^2.0.8",
"ionicons": "2.0.1",
"jquery": "3.2.1",
"jquery-slimscroll": "1.3.8",
"lodash": "4.17.4",
"ng2-slim-loading-bar": "4.0.0",
"ng2-smart-table": "1.2.2",
"normalize.css": "7.0.0",
"roboto-fontface": "0.8.0",
"rxjs": "5.5.6",
"zone.js": "0.8.20"
},
"devDependencies": {
"@angular-devkit/core": "0.0.28",
"@angular/cli": "1.5.0",
"@angular/compiler-cli": "^5.1.2",
"@types/jasmine": "2.6.2",
"@types/jquery": "2.0.41",
"@types/jquery.slimscroll": "1.3.30",
"@types/lodash": "4.14.61",
"@types/node": "6.0.69",
"codelyzer": "4.0.2",
"jasmine-core": "^2.8.0",
"jasmine-reporters": "^2.2.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "1.4.1",
"karma-jasmine": "1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"karma-junit-reporter": "^1.2.0",
"npm-run-all": "4.0.2",
"protractor": "^5.2.0",
"stylelint": "8.4.0",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"tslint-eslint-rules": "4.1.1",
"tslint-language-service": "0.9.8",
"typescript": "2.4.2",
"typogr": "0.6.7",
"underscore": "1.8.3"
}
}