-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "image-resizer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/server.ts",
"lint": "npx prettier --write ./src && npx eslint src",
"build": "npx tsc",
"test": "npm run build && npx jasmine",
"prod": "node build/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"sharp": "^0.31.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.11.9",
"@types/sharp": "^0.31.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"jasmine": "^4.5.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"supertest": "^6.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}