-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.08 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
{
"name": "shopping-list.angular",
"version": "0.0.0",
"engines": {
"node": ">=18.13.0"
},
"scripts": {
"ng": "ng",
"start:swa": "npx swa start",
"start:swa-no-api": "npx swa start http://localhost:4200 --run \"npm start\" --api-devserver-url http://localhost:7135/",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest",
"lint": "ng lint && npx stylelint \"**/*.scss\""
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.0",
"@angular/cdk": "^17.0.1",
"@angular/common": "^17.0.0",
"@angular/compiler": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/forms": "^17.0.0",
"@angular/material": "^17.0.1",
"@angular/platform-browser": "^17.0.0",
"@angular/platform-browser-dynamic": "^17.0.0",
"@angular/platform-server": "^17.0.0",
"@angular/router": "^17.0.0",
"@angular/ssr": "^17.0.0",
"express": "^4.18.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.0",
"@angular-eslint/builder": "17.1.0",
"@angular-eslint/eslint-plugin": "17.1.0",
"@angular-eslint/eslint-plugin-template": "17.1.0",
"@angular-eslint/schematics": "17.1.0",
"@angular-eslint/template-parser": "17.1.0",
"@angular/cli": "^17.0.0",
"@angular/compiler-cli": "^17.0.0",
"@azure/static-web-apps-cli": "^1.1.6",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.8",
"@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-preset-angular": "^13.1.4",
"postcss": "^8.4.31",
"postcss-scss": "^4.0.9",
"prettier": "3.1.0",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.4.0",
"ts-mockito": "^2.6.1",
"typescript": "~5.2.2"
}
}