-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "re-friend-tracker",
"version": "0.8.0",
"description": "Requirements Engineering Friend Tracker",
"keywords": [
"GUI",
"JSON",
"REST",
"Low Code Framework",
"Rapid Application Development",
"Rapid Application Manufacturing"
],
"homepage": "https://github.com/zhaw-iwi/re-friend-tracker/",
"bugs": {
"url": "https://github.com/zhaw-iwi/re-friend-tracker/issues"
},
"license": "LGPL-3.0",
"author": {
"name": "Adrian Moser"
},
"repository": {
"type": "git",
"url": "https://github.com/zhaw-iwi/re-friend-tracker.git"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"start": "npm run build && pm2 dist/server/server.js --watch && browser-sync start --config bs-config.js",
"watch": "browser-sync start --config bs-config.js",
"build": "tsc --project server/tsconfig.json"
},
"dependencies": {
"express": "4.19.2",
"multer": "1.4.5-lts.1",
"path-framework": "0.8.0-beta.7",
"pouchdb-adapter-memory": "9.0.0",
"pouchdb-core": "9.0.0"
},
"devDependencies": {
"@types/node": "22.5.4",
"body-parser": "1.20.2",
"browser-sync": "3.0.3",
"nodemon": "3.1.4",
"typescript": "5.4.2"
}
}