-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
74 lines (74 loc) · 1.87 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
{
"name": "arkitektonika",
"version": "2.1.1-SNAPSHOT",
"description": "",
"private": true,
"scripts": {
"start": "ts-node-esm ./app/launch.ts",
"start:prod": "yarn build && node ./dist/app/launch.js",
"build": "tsc",
"start:nodemon": "node ./node_modules/nodemon/bin/nodemon.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IntellectualSites/Arkitektonika.git"
},
"packageManager": "yarn@4.5.1",
"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.25.9",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/runtime": "7.26.0",
"better-sqlite3": "11.5.0",
"chalk": "5.3.0",
"express": "4.21.1",
"express-fileupload": "1.5.1",
"express-slow-down": "2.0.3",
"express-winston": "4.2.0",
"minimist": "1.2.8",
"multer": "1.4.5-lts.1",
"nanoid": "5.0.8",
"nbt-ts": "1.3.6",
"pako": "2.1.0",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"winston": "3.15.0",
"winston-transport": "4.8.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.25.9",
"@types/better-sqlite3": "7.6.11",
"@types/express": "4.17.21",
"@types/express-fileupload": "1.5.1",
"@types/express-slow-down": "1.3.5",
"@types/gzip-js": "0.3.5",
"@types/minimist": "1.2.5",
"@types/node": "22.8.4",
"@types/pako": "2.0.3",
"nodemon": "3.1.7"
}
}