-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.04 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
{
"private": true,
"name": "sleeper",
"version": "1.1.0",
"license": "MIT",
"workspaces": [
"extension",
"web"
],
"scripts": {
"ext": "yarn workspace extension start",
"ext:build": "yarn workspace extension build",
"ext:bump": "json -I -f extension/package.json -e \"this.version='$npm_package_version'\"",
"ext:release": "npm run ext:bump && yarn workspace extension release",
"web": "yarn workspace web start",
"web:lambda": "yarn workspace web start:lambda",
"web:build": "yarn workspace web build",
"web:bump": "json -I -f web/package.json -e \"this.dependencies.extension='$npm_package_version'\"",
"start": "concurrently \"npm:ext\" \"npm:web\"",
"build": "concurrently \"npm:ext:build\" \"npm:web:build\"",
"version": "npm run web:bump && npm run ext:release && git add -A",
"postversion": "git push && git push --tags && rm -rf extension/build"
},
"engines": {
"node": ">=12",
"yarn": ">=1.15"
},
"devDependencies": {
"concurrently": "5.1.0",
"json": "9.0.6"
}
}