-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.87 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
{
"name": "single-page-web-app",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/math-dojo/single-page-web-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/math-dojo/single-page-web-app/issues"
},
"homepage": "https://github.com/math-dojo/single-page-web-app#readme",
"scripts": {
"ng": "./node_modules/.bin/ng",
"start-mock-backends": "json-server --port 4201 --watch ./mock-backends/db.json",
"serve-webapp": "ng serve",
"start": "concurrently \"npm run start-mock-backends\" \"npm run serve-webapp\"",
"build": "ng build",
"test": "ng test",
"test-local": "ng test --browsers=Chrome --karmaConfig=karma.conf.local.js",
"lint": "ng lint",
"e2e-local": "concurrently --kill-others --success first \"npm run start-mock-backends\" \"ng e2e\"",
"e2e": "concurrently --kill-others --success first \"npm run start-mock-backends\" \"ng e2e --webdriverUpdate=false\"",
"postinstall": "ngcc --tsconfig \"./tsconfig.app.json\" && ngcc --tsconfig \"./tsconfig.spec.json\""
},
"private": true,
"dependencies": {
"@angular/animations": "^12.0.4",
"@angular/common": "^12.0.4",
"@angular/compiler": "^12.0.4",
"@angular/core": "^12.0.4",
"@angular/forms": "^12.0.4",
"@angular/platform-browser": "^12.0.4",
"@angular/platform-browser-dynamic": "^12.0.4",
"@angular/router": "^12.0.4",
"@cds/core": "^5.4.0",
"@clr/angular": "^5.4.0",
"@clr/icons": "^5.1.1",
"@clr/ui": "^5.4.0",
"@types/mathjax": "0.0.36",
"@webcomponents/custom-elements": "^1.4.2",
"@webcomponents/webcomponentsjs": "^2.4.3",
"mathjax": "^3.0.5",
"ng-katex": "^2.0.3",
"rxjs": "^6.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.0.4",
"@angular-eslint/builder": "12.1.0",
"@angular-eslint/eslint-plugin": "12.1.0",
"@angular-eslint/eslint-plugin-template": "12.1.0",
"@angular-eslint/schematics": "12.1.0",
"@angular-eslint/template-parser": "12.1.0",
"@angular/cli": "^12.0.4",
"@angular/compiler-cli": "^12.0.4",
"@angular/language-service": "^12.0.4",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.12.47",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"axios": "^0.21.1",
"concurrently": "^5.2.0",
"eslint": "^7.26.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"json-server": "^0.16.1",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"sinon": "^9.0.2",
"ts-node": "~7.0.0",
"typescript": "4.2.4"
}
}