-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "sushii-image-server",
"version": "5.3.1",
"description": "Simple local web server made with Koa and puppeteer to generate images.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node ./src/index.ts | pino-pretty -c -t",
"test": "jest",
"start": "yarn run build && node dist/index.js",
"lint": "yarn eslint . --ext .js,.ts"
},
"author": "Derrick Lee <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/sushiibot/sushii-image-server.git"
},
"license": "ISC",
"dependencies": {
"@godaddy/terminus": "^4.11.2",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"handlebars": "^4.7.7",
"pino": "^8.5.0",
"pino-http": "^8.2.0",
"pino-pretty": "^9.1.0",
"prom-client": "^14.0.1",
"puppeteer": "^18.0.3"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.3",
"jest": "^27.5.1",
"supertest": "^6.0.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.0.5"
}
}