-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.75 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "save-the-text-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:open": "ng serve -o",
"build": "ng build",
"test": "ng test",
"lint": "eslint \"src/**/*.ts\" --fix",
"e2e": "ng e2e",
"build:prod": "ng build --configuration production --aot --build-optimizer",
"deploy:firebase": "firebase deploy",
"update": "ng update @angular/cli @angular/core",
"update:cli": "ng update @angular/cli",
"update:core": "ng update @angular/core",
"format": "prettier \"src/**/*.{ts,scss}\" --write",
"stylelint": "stylelint \"src/**/*.scss\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,scss}": [
"prettier --write"
],
"src/**/*.ts": [
"eslint --cache --fix"
],
"src/**/*.scss": [
"stylelint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ofcyln/save-the-text.git"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.1.3",
"@angular/cdk": "^17.1.2",
"@angular/common": "^17.1.3",
"@angular/compiler": "^17.1.3",
"@angular/core": "^17.1.3",
"@angular/forms": "^17.1.3",
"@angular/material": "^17.1.2",
"@angular/platform-browser": "^17.1.3",
"@angular/platform-browser-dynamic": "^17.1.3",
"@angular/router": "^17.1.3",
"@angular/service-worker": "^17.1.3",
"@ngxs/devtools-plugin": "latest",
"@ngxs/logger-plugin": "latest",
"@ngxs/store": "latest",
"postcss-cli": "^11.0.0",
"rxjs": "latest",
"rxjs-tslint": "latest",
"tslib": "latest",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.1.3",
"@angular/cli": "^17.1.3",
"@angular/compiler-cli": "^17.1.3",
"@types/jasmine": "latest",
"@types/jasminewd2": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"autoprefixer": "^10.4.17",
"codelyzer": "latest",
"eslint": "7.32.0",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "^5.0.0",
"husky": "latest",
"jasmine-core": "latest",
"jasmine-spec-reporter": "latest",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-coverage-istanbul-reporter": "latest",
"karma-jasmine": "latest",
"karma-jasmine-html-reporter": "latest",
"lint-staged": "latest",
"postcss": "^8.4.35",
"postcss-nesting": "^12.0.2",
"prettier": "3.2.5",
"prettier-eslint": "16.3.0",
"protractor": "latest",
"stylelint": "16.2.1",
"stylelint-config-standard": "36.0.0",
"tailwindcss": "^3.4.1",
"ts-node": "latest",
"tslint": "latest",
"typescript": "5.3.3"
}
}