updated package.json for cloudflare pages

This commit is contained in:
paul
2024-10-01 12:20:09 +05:30
parent 8a74128d8f
commit c595fdd762
2 changed files with 21 additions and 2 deletions

19
package-lock.json generated
View File

@@ -37,7 +37,11 @@
}, },
"devDependencies": { "devDependencies": {
"ajv": "^7.2.4", "ajv": "^7.2.4",
"docsify-cli": "^4.4.4" "docsify-cli": "^4.4.4",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18"
} }
}, },
"node_modules/@adobe/css-tools": { "node_modules/@adobe/css-tools": {
@@ -20994,6 +20998,19 @@
"is-typedarray": "^1.0.0" "is-typedarray": "^1.0.0"
} }
}, },
"node_modules/typescript": {
"version": "4.9.5",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
"integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
"dev": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=4.2.0"
}
},
"node_modules/unbox-primitive": { "node_modules/unbox-primitive": {
"version": "1.0.2", "version": "1.0.2",
"resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",

View File

@@ -34,6 +34,7 @@
"web-vitals": "^2.1.4" "web-vitals": "^2.1.4"
}, },
"scripts": { "scripts": {
"install": "npm install",
"start": "react-scripts start", "start": "react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build", "build": "GENERATE_SOURCEMAP=false react-scripts build",
"build:local": "GENERATE_SOURCEMAP=false env-cmd -e production react-scripts build", "build:local": "GENERATE_SOURCEMAP=false env-cmd -e production react-scripts build",
@@ -63,6 +64,7 @@
}, },
"devDependencies": { "devDependencies": {
"ajv": "^7.2.4", "ajv": "^7.2.4",
"docsify-cli": "^4.4.4" "docsify-cli": "^4.4.4",
"typescript": "^4.9.5"
} }
} }