-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "resizer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"build": "npm run clean && npx tsc",
"watch": "npm run build && tsc-watch",
"pretty": "npx prettier --write .",
"clean": "node ./scripts/clean.js",
"debug": "node ./dist/index.js --debug"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.26.1",
"better-sqlite3": "^7.6.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"pretty": "^2.0.0",
"sharp": "^0.30.7"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.15.4",
"@types/better-sqlite3": "^7.6.3",
"@types/express": "^4.17.17",
"@types/node": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "2.7.1",
"typescript": "^4.9.3",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/multer": "^1.4.7",
"@types/uuid": "^9.0.1",
"tsc-watch": "^6.0.0"
}
}