-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "osbb",
"version": "1.0.0-legacy",
"description": "Google App Script for generating payment receipts for property owners. Developed for Ukrainian apartment house managers who operating with Housing Cooperatives, so-called OSBB.",
"config": {
"receipts": {
"htmlFile": "lib/receipts.html"
}
},
"keywords": [
"ukraine",
"ukr",
"manager",
"house",
"apartment",
"property",
"osbb",
"receipt",
"receipts"
],
"author": "Yurk Sha (https://yurks.github.io)",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/yurks/osbb/blob/master/LICENSE"
}
],
"license": "MIT",
"homepage": "https://github.com/yurks/osbb",
"repository": {
"type": "git",
"url": "https://github.com/yurks/osbb.git"
},
"bugs": {
"url": "https://github.com/yurks/osbb/issues"
},
"main": "src/app.js",
"scripts": {
"dev": "npm-run-all --parallel watch start",
"deploy": "yarn build && cd ./deploy && clasp push",
"build": "rollup -c",
"watch": "rollup -c -w",
"start": "serve deploy/lib",
"lint": "eslint . --ext .js,.html,.json --ignore-path .gitignore"
},
"dependencies": {
"file-saver": "^2.0.5",
"scss-spinners": "^2.1.3",
"wsk-utils": "^1.1.4"
},
"devDependencies": {
"@google/clasp": "^2.4.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/google-apps-script": "^1.0.49",
"dotenv": "^16.0.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-googleappsscript": "^1.0.4",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"rollup-plugin-ejs": "^2.3.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.53.0",
"serve": "^13.0.2"
}
}