-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 918 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
27
28
{
"name": "inhk-pwa",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=18.12.1",
"npm": "^=8.19.2"
},
"scripts": {
"postinstall": "npm --prefix client install && npm --prefix backend install",
"prebuild": "rm -r -f backend/public client/build",
"build": "npm run --prefix client build",
"postbuild": "mkdir backend/public && mv client/build/* backend/public",
"deploy": "npm run build && rm -r -f client/node_modules",
"start": "npm run --prefix backend start",
"start-dev": "npm run --prefix backend start | npm run --prefix client start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmitrykologrivko/inhk-pwa.git"
},
"author": "Dmitry Kologrivko",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmitrykologrivko/inhk-pwa/issues"
},
"homepage": "https://github.com/dmitrykologrivko/inhk-pwa#readme"
}