forked from open-learning-exchange/planet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·102 lines (102 loc) · 4.19 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
102
{
"name": "planet-app",
"version": "0.12.0",
"license": "AGPL-3.0",
"scripts": {
"ng": "ng",
"ng-high-memory": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng",
"start": "LNG=${LNG:-en};ng serve --aot --i18n-file=src/i18n/messages.$LNG.xlf --locale=$LNG --i18n-format=xlf",
"v-serve": "vagrant ssh dev -- -t 'cd /vagrant;ng serve'",
"build": "LNG=${LNG:-en};npm run ng-high-memory -- build --prod --i18n-file=src/i18n/messages.$LNG.xlf --i18n-locale=$LNG --i18n-format=xlf",
"v-build": "vagrant ssh dev -- -t 'cd /vagrant;ng build --prod'",
"test": "ng test",
"v-test": "vagrant ssh dev -- -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 planet-app --type-check",
"lint-all": "npm run sass-lint && ng lint planet-app --type-check && npm run htmlhint",
"v-lint": "vagrant ssh dev -- -t 'cd /vagrant;npm run lint -s'",
"v-lint-fix": "vagrant ssh dev -- -t 'cd /vagrant;ng lint planet-app --fix --type-check'",
"e2e": "ng e2e --webdriver-update=false",
"v-e2e": "vagrant ssh dev -- -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 dev -- -t 'cd /vagrant;npm run generate-yml'",
"generate-yml": "cd $(git rev-parse --show-toplevel)/docker;./generate_yml.sh",
"starthub-true": "echo \"true\" > /srv/starthub",
"starthub-false": "echo \"false\" > /srv/starthub",
"hub-boot-on": "vagrant ssh prod -- -t 'cd /vagrant;npm run starthub-true'",
"hub-boot-off": "vagrant ssh prod -- -t 'cd /vagrant;npm run starthub-false'",
"hub-boot-status": "vagrant ssh prod -- -t 'echo $(cat /srv/starthub)'",
"hub-on": "vagrant ssh prod -- -t 'cd /vagrant;./prod-docker.sh -hu'",
"hub-off": "vagrant ssh prod -- -t 'cd /vagrant;./prod-docker.sh -h'"
},
"private": true,
"dependencies": {
"@angular/animations": "8.2.14",
"@angular/cdk": "^8.2.3",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/platform-server": "8.2.14",
"@angular/router": "8.2.14",
"@angular/service-worker": "8.2.14",
"@covalent/markdown": "^2.1.0",
"@covalent/text-editor": "^2.1.0",
"@fullcalendar/angular": "^4.3.1",
"@fullcalendar/core": "^4.3.1",
"@fullcalendar/daygrid": "^4.3.0",
"@fullcalendar/timegrid": "^4.3.0",
"@types/cropperjs": "^1.3.0",
"chart.js": "^2.9.3",
"cropperjs": "^1.5.6",
"export-to-csv": "^0.2.1",
"html-to-pdfmake": "^1.2.0",
"jszip": "^3.2.2",
"material-design-icons": "^3.0.1",
"material-icons": "^0.3.1",
"mime": "^2.4.3",
"ngx-img": "^10.15.0",
"pdfmake": "^0.1.63",
"pouchdb": "^7.1.1",
"pouchdb-authentication": "^1.1.3",
"pouchdb-find": "^7.1.1",
"rxjs": "6.5.4",
"showdown": "1.9.1",
"tslib": "^1.9.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.803.21",
"@angular/cli": "^8.3.21",
"@angular/compiler-cli": "8.2.14",
"@angular/language-service": "8.2.14",
"@fortawesome/fontawesome-free": "^5.13.0",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "~13.1.4",
"@types/pouchdb": "^6.4.0",
"@types/pouchdb-find": "^6.3.4",
"codelyzer": "^5.2.1",
"htmlhint-ng2": "0.0.13",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "~3.0.0",
"karma-jasmine-html-reporter": "^1.5.1",
"protractor": "~5.4.2",
"request-promise": "^4.2.5",
"sass-lint": "^1.13.1",
"ts-node": "~8.5.4",
"tslint": "~5.20.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "~3.4.0"
}
}