-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "gas-svelte-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"rollup:npm": "rollup -c rollup.config.npm.js",
"build": "vite build && npm run rollup:npm && node postBuildProcess.js",
"build:push": "npm run build && clasp push",
"build:css:watch": "npx tailwindcss -i ./src/input.css -o ./src/output.css --watch",
"preview": "vite preview",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest"
},
"lint-staged": {
"*.{js,ts,svelte,html,css}": "prettier --write"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"autoprefixer": "^10.4.14",
"daisyui": "^3.1.9",
"jest": "^29.5.0",
"lint-staged": "^14.0.1",
"postcss": "^8.4.25",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.4.1",
"rollup": "^3.28.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"svelte": "^4.0.3",
"svelte-routing": "^1.11.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.2.2",
"vite": "^4.4.0",
"vite-plugin-singlefile": "^0.13.5"
},
"dependencies": {
"@types/google-apps-script": "^1.0.64",
"lodash": "^4.17.21",
"zod": "^3.22.2"
}
}