-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.6 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
{
"name": "holenav",
"version": "0.4.0",
"description": "New mapper for make benefit of the glorious EVE community. Currently in early prototyping.",
"engines": {
"node": ">=20.13.1"
},
"scripts": {
"start": "docker compose up -d mongo server web && npm run logs",
"start:test": "docker compose up mongo server-test web-test",
"stop": "docker compose down",
"logs": "docker compose logs -f server web",
"logs:all": "docker compose logs -f",
"test": "npm run lint && npm run test:server",
"test:server": "cd server && npm test",
"test:e2e": "cd testing/e2e && npm test",
"test:open": "cd testing/e2e && npm start",
"lint": "cd web && npm run lint && cd ../server && npm run lint && npm run lint",
"build": "docker compose build",
"db:drop": "docker volume rm holenav_mongo-data",
"docs": "cd docs && npm run dev",
"preversion": "if [ $(git rev-parse --abbrev-ref HEAD) != 'main' ]; then exit 1; fi ",
"version": "scripts/version_sub_projects.sh $npm_package_version",
"postversion": "git push && git push --tags",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"install:all": "scripts/npm_install_all.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joonashak/holenav.git"
},
"author": "Joonas Häkkinen <[email protected]>",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/joonashak/holenav/issues"
},
"homepage": "https://github.com/joonashak/holenav#readme",
"devDependencies": {
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0"
}
}