-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.22 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.22 KB
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
{
"name": "shopFlow",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"e2e": "playwright test",
"e2e:report": "playwright test && playwright show-report",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "ng build",
"build:analyze": "ng build --configuration=analyze",
"analyze": "npm run build:analyze && npx source-map-explorer \"dist/shopFlow/browser/*.js\" --html \"bundle-stats.html\" --no-border-checks",
"watch": "ng build --watch --configuration development",
"build:ssr": "ng build --configuration=production",
"serve:ssr:ssr": "node dist/shopFlow/server/server.mjs",
"lint": "ng lint"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"@angular/cdk": "^21.2.0",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/platform-server": "^21.2.0",
"@angular/router": "^21.2.0",
"@angular/ssr": "^21.2.0",
"@ngrx/effects": "^21.0.1",
"@ngrx/signals": "^21.0.1",
"@ngrx/store": "^21.0.1",
"@ngrx/store-devtools": "^21.0.1",
"express": "^5.1.0",
"ngx-stripe": "^21.8.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.16.1"
},
"devDependencies": {
"@angular/build": "^21.2.0",
"@angular/cli": "^21.2.0",
"@angular/compiler-cli": "^21.2.0",
"@angular/platform-browser-dynamic": "^21.2.4",
"@tailwindcss/postcss": "^4.1.16",
"@types/express": "^5.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.17.19",
"angular-eslint": "21.2.0",
"baseline-browser-mapping": "^2.9.11",
"eslint": "^9.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"@playwright/test": "^1.49.0",
"jest-preset-angular": "^16.1.1",
"jsdom": "^28.1.0",
"postcss": "^8.5.3",
"source-map-explorer": "^2.5.3",
"tailwindcss": "^4.1.16",
"typescript": "~5.9.2",
"typescript-eslint": "8.56.1"
}
}