forked from dedeard/static-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.43 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
{
"name": "static-image",
"version": "1.0.0",
"description": "Easy and powerful way to speed up loading of images on your website. Developed using node with typescript.",
"main": "dist/index.js",
"repository": "https://github.com/dedeard/static-image.git",
"author": "dede ariansya <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"test": "mocha -r ts-node/register src/tests/**/*.spec.ts -t 10000 --extension ts",
"format": "prettier --write src/**/*.ts",
"dev": "ts-node-dev --respawn --pretty --transpile-only --inspect=0.0.0.0:9229 src/index.ts dev",
"docker": "docker compose -f docker-compose.prod.yml",
"docker:dev": "docker compose -f docker-compose.dev.yml",
"docker:test": "docker compose -f docker-compose.test.yml"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@types/sharp": "^0.31.1",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"file-type": "16.3.0",
"got": "11.x.x",
"is-valid-domain": "^0.1.6",
"sharp": "^0.31.3"
}
}