-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "squoosh-server",
"version": "1.0.0",
"main": "lib/index.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check --watch",
"start": "node lib/index.js",
"watch": "babel src --out-dir lib --extensions '.ts,.tsx,.js' --copy-files --watch",
"build": "babel src --out-dir lib --extensions '.ts,.tsx,.js' --copy-files"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@hapi/accept": "^5.0.2",
"express": "^4.17.1",
"get-orientation": "^1.1.2",
"jest": "^26.6.3",
"jest-worker": "^26.6.2",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.9.0",
"@types/express": "^4.17.11",
"@types/node": "^15.0.2",
"@types/node-fetch": "^2.5.10",
"typescript": "3.8.3"
},
"description": "Express server for image compression and conversion using Google's Squoosh library"
}