This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
forked from IntellectualSites/Arkitektonika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "arkitektonika",
"version": "2.0.6-SNAPSHOT",
"description": "",
"private": true,
"scripts": {
"start": "ts-node-esm ./app/launch.ts",
"start:prod": "npm run build && node ./dist/app/launch.js",
"build": "npx tsc",
"start:nodemon": "node ./node_modules/nodemon/bin/nodemon.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IntellectualSites/Arkitektonika.git"
},
"packageManager": "[email protected]",
"type": "module",
"author": "IntellectualSites",
"license": "ISC",
"bugs": {
"url": "https://github.com/IntellectualSites/Arkitektonika/issues"
},
"exports": "./dist/app/launch.js",
"engines": {
"node": ">=16.16.0"
},
"homepage": "https://github.com/IntellectualSites/Arkitektonika#readme",
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
},
"dependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/runtime": "7.23.9",
"@types/pako": "^2.0.3",
"better-sqlite3": "9.3.0",
"chalk": "5.3.0",
"express": "4.18.2",
"express-fileupload": "1.4.3",
"express-slow-down": "2.0.1",
"express-winston": "4.2.0",
"minimist": "1.2.8",
"multer": "1.4.5-lts.1",
"nanoid": "5.0.4",
"nbt-ts": "1.3.6",
"nodemon": "3.0.3",
"pako": "^2.1.0",
"sqlite3": "5.1.7",
"winston": "3.11.0",
"winston-transport": "4.6.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.23.9",
"@types/better-sqlite3": "7.6.9",
"@types/express": "4.17.21",
"@types/express-fileupload": "1.4.4",
"@types/express-slow-down": "1.3.5",
"@types/gzip-js": "0.3.5",
"@types/minimist": "1.2.5",
"@types/node": "20.11.5",
"@types/sqlite3": "3.1.11",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}