generated from integrating-magic/js-dev-environment
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "js-dev-environment",
"version": "2.0.0",
"author": "jeremy@integratingmagic.io",
"license": "ISC",
"description": "a generic development environment for developing JS in FileMaker",
"scripts": {
"start": "vite",
"browserslist": "> 0.5%, last 2 versions, not dead",
"build": "vite build",
"upload": "node ./scripts/upload.cjs",
"build:upload": "npm run build && npm run upload",
"deploy-to-fm": "npm run build && npm run upload",
"openfile": "node ./scripts/openFileOnServer",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"open": "^8.2.1",
"postcss": "^8.4.16",
"prettier": "2.6.2",
"process": "^0.11.10",
"vite": "^6.1.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-singlefile": "^2.1.0"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.16",
"@vitejs/plugin-react": "^4.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^4.1.16"
}
}