-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.15 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.15 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
65
66
{
"name": "wurkspaces-dev-boilerplate",
"private": true,
"version": "2.0.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",
"dev": "vite",
"build:ui": "vite build",
"build": "npm run build:ui && npm run build:gas",
"build:addon:push": "npm run build:ui && npm run build:gas && npm run push",
"build:lib": "npm run build:cp && npm run build:node && npm run build:gas",
"push": "clasp push -f",
"lint": "npx eslint src/**/*.{js,ts}",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src/**/*.{js,ts} --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "vitest",
"tree": "tree -I 'node_modules' -I '.git' --dirsfirst -a"
},
"devDependencies": {
"@babel/parser": "^7.27.0",
"@babel/traverse": "^7.27.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@tailwindcss/typography": "^0.5.15",
"@types/alpinejs": "^3.13.10",
"@types/google-apps-script": "^1.0.83",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"eslint": "^9.39.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-googleappsscript": "^1.0.5",
"globals": "^16.5.0",
"husky": "^8.0.3",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"vite": "^6.3.5",
"vite-plugin-singlefile": "^2.0.2",
"vitest": "^3.1.2"
},
"dependencies": {
"@google/clasp": "^3.0.3-alpha",
"alpinejs": "^3.14.1"
}
}