-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
{
"name": "quizmkr",
"description": "Q U I Z M K R - a minimalist quiz maker and assessment app",
"version": "0.0.1",
"author": "Vytautas Mizgiris",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/vmizg/quizmkr.git"
},
"bugs": {
"url": "https://github.com/vmizg/quizmkr/issues"
},
"homepage": "https://github.com/vmizg/quizmkr",
"engines": {
"node": ">=16.14.0",
"npm": ">=8"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"format": "prettier . --write",
"format:fix": "pretty-quick --staged",
"precommit": "run-s format:fix lint",
"lint": "ng lint"
},
"dependencies": {
"@angular/animations": "^16.1.8",
"@angular/cdk": "^16.1.7",
"@angular/cdk-experimental": "^16.1.7",
"@angular/common": "^16.1.8",
"@angular/compiler": "^16.1.8",
"@angular/core": "^16.1.8",
"@angular/forms": "^16.1.8",
"@angular/platform-browser": "^16.1.8",
"@angular/platform-browser-dynamic": "^16.1.8",
"@angular/router": "^16.1.8",
"@auth0/auth0-angular": "~2.2.1",
"@shoelace-style/shoelace": "^2.7.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.1",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.8",
"@angular-eslint/builder": "^16.1.0",
"@angular-eslint/eslint-plugin": "^16.1.0",
"@angular-eslint/eslint-plugin-template": "^16.1.0",
"@angular-eslint/schematics": "^16.1.0",
"@angular-eslint/template-parser": "^16.1.0",
"@angular/cli": "^16.1.8",
"@angular/compiler-cli": "^16.1.8",
"@types/jasmine": "^4.3.5",
"@types/node": "^18.17.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"jasmine-core": "^5.1.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.27",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^9.1.1",
"prettier": "^3.0.1",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.3.3",
"typescript": "~5.1.6"
}
}