-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 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
70
{
"name": "nixng",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"cypress-record": "npx cypress run --record --key b88452a5-7bd1-4b5e-873e-301699605f72",
"start": "set NG_PERSISTENT_BUILD_CACHE=1 && ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "npx eslint src/**/*.{ts,html} --quiet --fix",
"format": "npx prettier src/**/*.{ts,html} --write",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.7",
"@angular/common": "^15.2.7",
"@angular/compiler": "^15.2.7",
"@angular/core": "^15.2.7",
"@angular/forms": "^15.2.7",
"@angular/platform-browser": "^15.2.7",
"@angular/platform-browser-dynamic": "^15.2.7",
"@angular/router": "^15.2.7",
"@ngneat/transloco": "^4.1.1",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.6",
"@angular-eslint/builder": "^15.2.1",
"@angular-eslint/eslint-plugin": "^15.2.1",
"@angular-eslint/eslint-plugin-template": "^15.2.1",
"@angular-eslint/schematics": "^15.2.1",
"@angular-eslint/template-parser": "^15.2.1",
"@angular/cli": "^15.2.6",
"@angular/compiler-cli": "^15.2.7",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"autoprefixer": "^10.4.2",
"cypress": "^11.0.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lint-staged": "12.4.1",
"ngc-esbuild": "^0.0.75",
"postcss": "^8.4.5",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.13",
"typescript": "~4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html}": "eslint --cache --fix"
}
}