-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 948 Bytes
/
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
{
"name": "lingonika",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=20.14.0",
"npm": "^=10.7.0"
},
"author": "Dmitry Kologrivko",
"license": "MIT",
"scripts": {
"postinstall": "npm --prefix client install && npm --prefix backend install",
"prebuild": "rm -r -f backend/public client/dist",
"build": "npm run --prefix client build && npm run --prefix backend build",
"postbuild": "mkdir backend/public && mv client/dist/* backend/public",
"deploy": "npm run build && rm -r -f client",
"migrate-dev": "npm run --prefix backend migrate",
"migrate": "npm run --prefix backend migrate:prod",
"start": "npm run --prefix backend start:prod",
"start-dev": "npm run --prefix backend start | npm run --prefix client start"
},
"bugs": {
"url": "https://github.com/dmitrykologrivko/LINGONIKA/issues"
},
"homepage": "https://github.com/dmitrykologrivko/LINGONIKA#readme"
}