-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "task-app",
"version": "1.0.0",
"description": "A simple task management app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve:ssr:error-handling-app": "node dist/error-handling-app/server/server.mjs",
"ng": "ng serve",
"php": "php -S localhost:8000 -t public/",
"start": "concurrently \"npm run ng\" \"npm run php\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kvnbbg/task-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kvnbbg/task-app/issues"
},
"homepage": "https://github.com/Kvnbbg/task-app#readme",
"dependencies": {
"@angular/cli": "^17.3.1",
"@angular/common": "^17.3.1",
"@angular/compiler": "^17.3.1",
"@angular/core": "^17.3.1",
"@angular/platform-browser": "^17.3.1",
"@angular/platform-browser-dynamic": "^17.3.1",
"@angular/platform-server": "^17.3.1",
"@angular/ssr": "^17.3.1",
"express": "^4.18.2",
"modules": "^0.4.0",
"node": "^21.7.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.5",
"@angular/compiler-cli": "^17.3.0",
"@types/express": "^4.17.17",
"@types/node": "^18.18.0",
"concurrently": "^8.2.2",
"typescript": "~5.4.2"
}
}