-
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) · 1.26 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.26 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
{
"name": "airportmap-app",
"private": true,
"description": "Main application of the Airportmap, frontend ui / web interface",
"license": "MIT",
"author": {
"name": "komed3 (Paul Köhler)",
"email": "[email protected]",
"url": "https://komed3.de"
},
"scripts": {
"assets:build": "npx build-assets --config=project/build-assets.yml --compressed",
"assets:build:ci": "npx build-assets --config=project/build-assets.yml --compressed --ci",
"assets:clear": "rm -rf public/css && rm -rf public/js",
"assets:dev": "npx build-assets --config=project/build-assets.yml",
"dev": "cross-env NODE_ENV=dev node -r ts-node/register src/app.ts",
"i18n:sync": "npx i18n-sync --config=i18n/i18n.config.yml",
"i18n:sync:ci": "npx i18n-sync --config=i18n/i18n.config.yml --ci",
"start": "node dist/app.js"
},
"dependencies": {
"@airportmap/map": "github:airportmap/map",
"@airportmap/server": "github:airportmap/server",
"pug": "^3.0.4"
},
"devDependencies": {
"@airportmap/build-tools": "github:airportmap/build-tools",
"@airportmap/types": "github:airportmap/types",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"cross-env": "^10.1.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
}
}