-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.83 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "bkper-sheets",
"version": "1.16.6",
"description": "Bkper Sheets Add-on",
"repository": "https://github.com/bkper/bkper-sheets",
"author": "Bkper Inc.",
"private": true,
"scripts": {
"clasp:store": "cp ~/.clasprc.json ~/.clasprc-bkper.json",
"clasp:activate": "cp ~/.clasprc-bkper.json ~/.clasprc.json",
"open": "clasp open",
"test": "yarn --cwd server/ test",
"clean:dist": "rimraf dist",
"clean:client": "yarn --cwd client/ clean",
"types": "yarn --cwd client/ types",
"clean:server": "yarn --cwd server/ clean",
"clean": "run-p clean:*",
"upgrade:app": "yarn --cwd server/ upgrade:app",
"copy:client": "copyfiles -f client/dist/* dist/",
"copy:server": "copyfiles -f server/src/* dist/",
"copy": "run-p copy:*",
"build:client": "yarn --cwd client/ build",
"build:server": "yarn --cwd server/ build",
"build": "run-p clean build:*",
"postbuild": "yarn copy",
"watch": "run-p watch:client watch:server watch:push",
"watch:client": "run-p watch:client:*",
"watch:client:src": "watch 'yarn --cwd client/ build' ./client/src",
"watch:client:dist": "watch 'yarn copy:client' ./client/dist",
"watch:server": "watch 'yarn copy:server' ./server/src",
"watch:push": "watch 'yarn push' ./dist --wait 5",
"prepush": "yarn clasp:activate",
"push": "yarn clasp push --force",
"patch": "yarn version --patch",
"minor": "yarn version --minor",
"major": "yarn version --major",
"preversion": "run-s build push",
"postversion": "clasp version $npm_package_version && git push && git push --tags && echo \"Successfully released version $npm_package_version!\""
},
"devDependencies": {
"@google/clasp": "^2.3.0",
"copyfiles": "^2.1.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"watch": "^1.0.2"
},
"dependencies": {}
}