-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
77 lines (77 loc) · 2.6 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
{
"name": "structure-ng-app-2021",
"version": "12.0.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:alternative": "NODE_ENV=production node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --prod",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"lint:debug": "TIMING=1 ng lint --fix",
"register-git-hooks": "npx simple-git-hooks",
"format:ts": "prettier --write 'src/**/*.{js,ts,scss,css,less,jsx,tsx,json}'",
"format:html": "prettier --write 'src/**/*.{html,xml}'",
"format": "npm run format:ts && npm run format:html",
"ng-update": "ng update @angular/cli @angular/core --allow-dirty"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.0.2",
"@angular/common": "~12.0.2",
"@angular/compiler": "~12.0.2",
"@angular/core": "~12.0.2",
"@angular/forms": "~12.0.2",
"@angular/platform-browser": "~12.0.2",
"@angular/platform-browser-dynamic": "~12.0.2",
"@angular/router": "~12.0.2",
"@briebug/jest-schematic": "^3.1.0",
"@ng-web-apis/common": "^1.9.0",
"@ngneat/tailwind": "^7.0.3",
"rxjs": "~6.6.7",
"rxjs-state-subject": "^1.1.0",
"tslib": "^2.2.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "12.0.0",
"@angular-devkit/build-angular": "~12.0.2",
"@angular-eslint/builder": "12.0.0",
"@angular-eslint/eslint-plugin": "12.0.0",
"@angular-eslint/eslint-plugin-template": "12.0.0",
"@angular-eslint/schematics": "12.0.0",
"@angular-eslint/template-parser": "12.0.0",
"@angular/cli": "~12.0.2",
"@angular/compiler-cli": "~12.0.2",
"@angular/language-service": "~12.0.2",
"@tailwindcss/aspect-ratio": "0.2.1",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/line-clamp": "0.2.1",
"@tailwindcss/typography": "^0.4.1",
"@types/jest": "26.0.23",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "27.0.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"simple-git-hooks": "^2.4.1",
"tailwindcss": "^2.1.2",
"ts-loader": "9.2.2",
"ts-node": "10.0.0",
"typescript": "~4.2.4"
},
"lint-staged": {
"*.{scss,css,less,json}": "prettier --write",
"*.{html,xml}": "prettier --write",
"*.{ts,js}": "eslint --cache --fix"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}