-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
85 lines (85 loc) · 3.24 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
{
"name": "ang-bell-app",
"version": "0.3.8",
"license": "AGPL-3.0",
"scripts": {
"ng": "ng",
"start": "LNG=${LNG:-en};ng serve --aot --i18n-file=src/i18n/messages.$LNG.xlf --locale=$LNG --i18n-format=xlf",
"v-serve": "vagrant ssh -- -t 'cd /vagrant;ng serve'",
"build": "LNG=${LNG:-en};ng build --prod --i18n-file=src/i18n/messages.$LNG.xlf --locale=$LNG --i18n-format=xlf",
"v-build": "vagrant ssh -- -t 'cd /vagrant;ng build --prod'",
"test": "ng test",
"v-test": "vagrant ssh -- -t 'cd /vagrant;ng test'",
"htmlhint": "./node_modules/htmlhint-ng2/bin/htmlhint --config .htmlhintrc",
"sass-lint": "./node_modules/sass-lint/bin/sass-lint.js -c ./sass-lint.yml -v -q",
"lint": "ng lint ang-bell-app --type-check",
"lint-all": "npm run sass-lint && ng lint ang-bell-app --type-check && npm run htmlhint",
"v-lint": "vagrant ssh -- -t 'cd /vagrant;npm run lint -s'",
"v-lint-fix": "vagrant ssh -- -t 'cd /vagrant;ng lint ang-bell-app --fix --type-check'",
"e2e": "ng e2e --webdriver-update=false",
"v-e2e": "vagrant ssh -- -t 'cd /vagrant;ng e2e --webdriver-update=false'",
"install-hooks": "cp -a git-hooks/. .git/hooks/",
"webdriver-set-version": "webdriver-manager update --standalone false --gecko false --versions.chrome 2.37",
"v-generate-yml": "vagrant ssh -- -t 'cd /vagrant;npm run generate-yml'",
"generate-yml": "cd $(git rev-parse --show-toplevel)/docker;./generate_yml.sh"
},
"private": true,
"dependencies": {
"@angular/animations": "6.0.7",
"@angular/cdk": "^6.3.1",
"@angular/common": "6.0.7",
"@angular/compiler": "6.0.7",
"@angular/core": "6.0.7",
"@angular/forms": "6.0.7",
"@angular/material": "^6.3.1",
"@angular/platform-browser": "6.0.7",
"@angular/platform-browser-dynamic": "6.0.7",
"@angular/platform-server": "6.0.7",
"@angular/router": "6.0.7",
"@angular/service-worker": "6.0.7",
"@covalent/markdown": "^1.0.1",
"@covalent/text-editor": "^1.0.0",
"@types/cropperjs": "^1.1.2",
"core-js": "^2.5.1",
"cropperjs": "^1.3.4",
"jszip": "^3.1.5",
"material-design-icons": "^3.0.1",
"material-icons": "^0.1.0",
"mime": "^2.3.1",
"ngx-img": "^10.15.0",
"pouchdb": "^7.0.0",
"pouchdb-authentication": "^1.1.3",
"pouchdb-find": "^7.0.0",
"rxjs": "^6.2.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.6",
"@angular/cli": "^6.0.7",
"@angular/compiler-cli": "6.0.7",
"@angular/language-service": "6.0.7",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"@types/pouchdb": "^6.3.2",
"@types/pouchdb-find": "^6.3.3",
"codelyzer": "~3.2.0",
"htmlhint-ng2": "0.0.13",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.5.3",
"protractor": "~5.1.2",
"request-promise": "^4.2.1",
"sass-lint": "^1.12.1",
"ts-node": "~3.2.0",
"tslint": "~5.3.2",
"tslint-eslint-rules": "^4.1.1",
"typescript": "2.7.2"
}
}