-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
{
"description": "A web app that lets users send messages to each other, built as part of studying The Odin Project's Node.js course.",
"name": "odin-messaging-app",
"version": "0.0.0",
"scripts": {
"type-check": "tsc --noEmit -p ./tsconfig.app.json && tsc --noEmit -p ./tsconfig.spec.json",
"zip": "cd ./dist/$npm_package_name/browser/ && zip -r ../../$npm_package_name.zip .",
"watch": "ng build --watch --configuration development",
"build:zip": "npm run build && npm run zip",
"lint": "ng lint --silent",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"ng": "ng"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/router": "^21.0.0",
"@emoji-mart/data": "^1.2.1",
"@primeuix/themes": "^2.0.2",
"emoji-mart": "^5.6.0",
"primeicons": "^7.0.0",
"primeng": "^21.0.2",
"rxjs": "~7.8.0",
"socket.io-client": "^4.8.3",
"tailwindcss-primeui": "^0.6.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.0.0",
"@angular/cli": "^21.0.0",
"@angular/compiler-cli": "^21.0.0",
"@tailwindcss/postcss": "^4.1.12",
"@testing-library/angular": "^18.1.1",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/user-event": "^14.5.2",
"angular-eslint": "21.0.0",
"eslint": "^9.39.1",
"jsdom": "^27.1.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.12",
"typescript": "~5.9.2",
"typescript-eslint": "8.46.4",
"vitest": "^4.0.8"
}
}