-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 2.2 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
{
"name": "wurkspaces-dev-boilerplate",
"private": true,
"version": "1.3.1",
"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",
"dev": "vite",
"build:ui": "vite build",
"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.15",
"@types/alpinejs": "^3.13.10",
"@types/google-apps-script": "^1.0.83",
"@types/jest": "^29.5.12",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-googleappsscript": "^1.0.5",
"husky": "^8.0.3",
"jest": "^29.7.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"vite": "^5.4.3",
"vite-plugin-singlefile": "^2.0.2"
},
"dependencies": {
"alpinejs": "^3.14.1"
}
}