-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.43 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
79
80
81
82
83
84
85
{
"name": "gas-fire",
"version": "3.2.0",
"author": "Melle Dijkstra",
"description": "Google App Script utilities to automate the FIRE google sheet",
"license": "MIT",
"type": "module",
"private": true,
"engines": {
"node": "20"
},
"scripts": {
"serve": "vite",
"dev": "npm run build:dev && npm run publish && npm run serve",
"build": "vite build --mode production",
"build:dev": "vite build --mode development",
"deploy": "npm run build && npm run publish",
"publish": "clasp push -f",
"typecheck": "tsc",
"test": "vitest",
"test:coverage": "vitest --coverage",
"analyze:server": "echo 'not implemented yet'",
"analyze:client": "echo 'not implemented yet'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"switch-env": "node ./scripts/switch-env.js"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^5.15.16",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.25.9",
"@google/clasp": "^2.4.2",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/blocks": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/react-vite": "^8.4.2",
"@storybook/test": "^8.4.2",
"@storybook/types": "^8.4.2",
"@types/google-apps-script": "^1.0.84",
"@types/node": "^22.8.1",
"@types/papaparse": "^5.3.15",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "^2.1.3",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"gas-client": "^1.1.1",
"gas-types-detailed": "^1.1.2",
"storybook": "^8.4.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-singlefile": "^2.0.3",
"vite-plugin-static-copy": "^2.0.0",
"vitest": "^2.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melledijkstra/gas-fire.git"
},
"keywords": [
"google-apps-script",
"typescript",
"financial",
"automation",
"script",
"sheet",
"google"
],
"bugs": {
"url": "https://github.com/melledijkstra/gas-fire/issues"
}
}