-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.18 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
{
"name": "@bookay/base",
"description": "NOTE: this package.json is just an entrypoint for tests and deployment. For development, check subfolders.",
"engines": {
"node": "^20.0"
},
"scripts": {
"build": "npm-run-all build:*",
"build:webapp": "npm --prefix webapp run build",
"build:plugin": "npm --prefix plugin run build",
"clobber": "find -E . -regex '.*(node_modules|package-lock.*)$' -exec rm -rf {} \\;",
"install:server": "npm --prefix server install",
"install:webapp": "npm --prefix webapp install",
"install:plugin": "npm --prefix plugin install",
"install:test:test": "npm --prefix test install",
"postinstall": "npm-run-all install:*",
"pretest": "npm-run-all install:test:*",
"start": "node server/server.js",
"test": "npm-run-all test:*",
"test:webapp": "npm --prefix webapp test",
"test:server": "npm --prefix server test",
"test:test": "npm --prefix test test",
"update:force": "npm run clobber && npm-run-all install:**"
},
"version": "1.0.0",
"repository": "https://github.com/jaynetics/bookay",
"author": "Janosch Müller",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}