-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 818 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 818 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
{
"name": "kaiku",
"version": "0.2.2",
"description": "Kaiku Slackbot",
"scripts": {
"start": "docker compose up -d && npm run logs",
"stop": "docker compose down",
"build": "docker compose build",
"logs": "docker compose logs -f app",
"postinstall": "cd app && npm ci",
"format:check": "prettier --check .",
"lint": "cd app && npm run lint",
"test:app": "cd app && npm test",
"test": "npm run format:check && npm run lint && npm run test:app",
"version": "dev/version_sub_projects.sh $npm_package_version",
"postversion": "git push && git push --tags"
},
"author": "Joonas Häkkinen <joonas.hakkinen@funidata.fi>",
"license": "GPL-3.0",
"devDependencies": {
"@nestjs/cli": "^10.4.5",
"prettier": "3.3.3",
"prettier-plugin-jsdoc": "^1.3.0"
}
}