-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "sekret-link-ui",
"version": "0.3.9",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build -c production",
"test": "ng test",
"lint": "ng lint",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json|html)\"",
"e2e": "ng e2e",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@angular/common": "^18.0.2",
"@angular/compiler": "^18.0.2",
"@angular/core": "^18.0.2",
"@angular/forms": "^18.0.2",
"@angular/platform-browser": "^18.0.2",
"@angular/platform-browser-dynamic": "^18.0.2",
"@angular/router": "^18.0.2",
"angular-in-memory-web-api": "^0.11.0",
"crypto-js": "^4.1.1",
"node-sass": "^7.0.0",
"rxjs": "~6.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.3",
"@angular-devkit/schematics": "^18.0.3",
"@angular/cli": "^18.0.3",
"@angular/compiler-cli": "^18.0.2",
"@types/crypto-js": "^3.1.47",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"angular-eslint": "18.1.0",
"autoprefixer": "^10.4.19",
"codelyzer": "^6.0.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.1",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"prettier-eslint": "^16.3.0",
"protractor": "~7.0.0",
"tailwindcss": "^3.4.6",
"ts-node": "~8.3.0",
"typescript": "~5.4.5",
"typescript-eslint": "8.0.0-alpha.38"
},
"lint-staged": {
"**/*.{js,ts,html,css}": [
"prettier --write"
]
}
}