-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.14 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
{
"name": "nickcacace.com",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "ng build --configuration production",
"start:dev": "ng serve",
"build:dev": "ng build",
"ng": "ng",
"test": "npm run prettier-check && npm run lint",
"prettier-check": "prettier --check --ignore-path .gitignore .",
"prettier-fix": "prettier --write --ignore-path .gitignore .",
"lint": "ng lint",
"e2e": "ng e2e",
"prepare": "husky install"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.6",
"@angular-devkit/core": "^16.2.6",
"@angular-eslint/builder": "^16.2.0",
"@angular-eslint/eslint-plugin": "^16.2.0",
"@angular-eslint/eslint-plugin-template": "^16.2.0",
"@angular-eslint/schematics": "^16.2.0",
"@angular-eslint/template-parser": "^16.2.0",
"@angular/animations": "^16.2.9",
"@angular/cli": "^16.2.6",
"@angular/common": "^16.2.9",
"@angular/compiler": "^16.2.9",
"@angular/compiler-cli": "^16.2.9",
"@angular/core": "^16.2.9",
"@angular/forms": "^16.2.9",
"@angular/language-service": "^16.2.9",
"@angular/platform-browser": "^16.2.9",
"@angular/platform-browser-dynamic": "^16.2.9",
"@angular/router": "^16.2.9",
"@types/jasmine": "~4.3.1",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"bulma": "^0.9.4",
"core-js": "^3.30.0",
"eslint": "^8.51.0",
"font-awesome": "^4.7.0",
"husky": "^8.0.3",
"jasmine-core": "~4.6.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"protractor": "~7.0.0",
"rxjs": "^6.5.4",
"rxjs-compat": "^6.6.7",
"ts-node": "~10.9.1",
"tslib": "^2.5.0",
"typescript": "4.9.5",
"zone.js": "~0.13.0"
},
"lint-staged": {
"*.{js,jsx,json,css,md,mdx,ts,tsx}": [
"prettier --write"
]
}
}