-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.02 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
{
"name": "retail-pos-system",
"version": "1.0.0",
"description": "Modern POS system for retail stores with MongoDB integration",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0 --disable-host-check",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"server": "cd server && nodemon index.js",
"dev": "concurrently \"npm run server\" \"npm start\"",
"install-all": "npm install && cd server && npm install",
"format": "prettier --write \"src/**/*.{ts,html,scss,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,scss,css,json}\"",
"prebuild": "npm run format:check",
"prepare": "husky install",
"lint": "ng lint"
},
"keywords": [
"POS",
"retail",
"angular",
"mongodb"
],
"author": "",
"license": "MIT",
"dependencies": {
"@angular/animations": "^21.0.0",
"@angular/cdk": "^21.0.0",
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/material": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.0",
"@angular/router": "^21.0.0",
"@bwip-js/browser": "^4.8.0",
"@fortawesome/fontawesome-free": "^7.1.0",
"html5-qrcode": "^2.3.8",
"qz-tray": "^2.2.5",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.0.0",
"@angular/cli": "^21.0.0",
"@angular/compiler-cli": "^21.0.0",
"@types/node": "^24.10.1",
"angular-eslint": "21.1.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "8.47.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,scss,css,html}": [
"prettier --write"
]
}
}