forked from WildH0g/apps-script-engine-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.3 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.3 KB
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
{
"name": "wurkspaces-dev-boilerplate",
"private": true,
"version": "1.2.0",
"type": "module",
"main": "./dist/node/app.umd.cjs",
"module": "./dist/node/app.js",
"exports": {
".": {
"import": "./dist/node/app.js",
"require": "./dist/node/app.umd.cjs"
}
},
"homepage": "https://github.com/WildH0g/wurkspaces-dev-gas-boilerplate.git",
"repository": {
"type": "git",
"url": "git+https://github.com/WildH0g/wurkspaces-dev-gas-boilerplate.git"
},
"keywords": [],
"scripts": {
"install:husky": "husky install && npx husky add .husky/pre-commit \"npm run format && npm t\"",
"mkreadme": "npx readme-md-generator",
"env:dev": "node ./env-mgt/set-env.js dev",
"env:uat": "node ./env-mgt/set-env.js uat",
"env:prod": "node ./env-mgt/set-env.js prod",
"env:save": "node ./env-mgt/save-env.js",
"dev": "vite",
"build:ui": "vite build",
"build:css:watch": "npx tailwindcss -i ./src/client/assets/input.css -o ./src/client/assets/output.css --watch",
"build:gas": "vite build --config vite.config.gas.js",
"build:addon:push": "npm run build:ui && npm run build:gas && npm run push",
"build:cp": "vite build --config vite.config.copy-paste.js",
"build:node": "vite build --config vite.config.node.js",
"build": "npm run build:ui && npm run build:gas",
"build:lib": "npm run build:cp && npm run build:node && npm run build:gas",
"push": "clasp push -f",
"lint": "npx eslint src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src/**/*.js --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"tree": "tree -I 'node_modules' -I '.git' --dirsfirst -a"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/alpinejs": "^3.13.10",
"@types/google-apps-script": "^1.0.60",
"@types/jest": "^29.5.1",
"daisyui": "^3.1.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-googleappsscript": "^1.0.4",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.6",
"vite": "^4.2.0",
"vite-plugin-singlefile": "^0.13.5"
},
"dependencies": {
"alpinejs": "^3.12.2"
}
}