-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.58 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
{
"name": "seam-carver-visualizer",
"version": "1.0.0",
"description": "Web application to resize images using Seam Carver method",
"main": "index.js",
"scripts": {
"start": "parcel index.html",
"prestart:cloud-function": "rm -rf dis-cloud-function && tsc --build tsconfig-cloud-function.json",
"start:cloud-function": "functions-framework --source=dist-cloud-function/cloud-function.js --target=handler",
"profile:cloud-function": "node --prof ./node_modules/.bin/functions-framework --source=dist-cloud-function/cloud-function.js --target=handler",
"build": "parcel build index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"tsc": "tsc --noEmit"
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**"
},
"keywords": [
"seam",
"carver",
"algorithms"
],
"author": "Jorge Florian",
"license": "ISC",
"devDependencies": {
"@google-cloud/functions-framework": "^1.5.1",
"@types/bootstrap": "^4.3.2",
"@types/busboy": "^0.2.3",
"@types/express": "^4.17.6",
"@types/golang-wasm-exec": "^1.15.0",
"@types/jquery": "^3.3.38",
"@types/lodash": "^4.14.154",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.6.0",
"typescript": "^4.9.5"
},
"dependencies": {
"busboy": "^0.3.1",
"lodash": "^4.17.15"
}
}