-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 792 Bytes
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
{
"name": "memory",
"version": "2.0.0",
"description": "Memory with NodeJS and jQuery",
"main": "src/server/server.js",
"dependencies": {
"bootstrap": "^5.3.8",
"express": "^5.1.0",
"jquery": "^4.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^25.9.2",
"typescript": "^7.0.2"
},
"scripts": {
"build": "tsc",
"prestart": "tsc",
"start": "node src/server/server.js",
"dev": "tsc --watch"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jonasdero/memory.git"
},
"author": "Jonasdero",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jonasdero/memory/issues"
},
"homepage": "https://github.com/Jonasdero/memory#readme"
}