-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 926 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 926 Bytes
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
{
"name": "js-dev-environment-new",
"version": "1.0.0",
"author": "",
"license": "MIT",
"description": "Solving a client problem",
"scripts": {
"start": "vite",
"reload": "node ./scripts/reload-dev",
"deploy-to-fm": "npm run build && npm run upload",
"build": "vite build",
"upload": "node ./scripts/upload.cjs",
"generate-script-steps": "node ./scripts/generate-script-steps",
"reset-dev": "npm run clear-cache && npm run start",
"start-fm-dev": "node ./scripts/start-fm-dev",
"open-dev-browser": "open http://localhost:1234"
},
"type":"module",
"browserslist": "> 0.5%, last 2 versions, not dead",
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"open": "^8.2.1",
"prettier": "2.6.2",
"vite": "^6.0.3",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-singlefile": "^2.1.0"
},
"widgetType": "JS"
}