-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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": "imageprocessingapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.ts",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint src/**/*.ts",
"build": "npx tsc",
"jasmine": "jasmine",
"pretest": "touch outputs/foo.jpg && rm outputs/*.jpg",
"test": "npm run build && npm run jasmine"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"sharp": "^0.31.1"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/node": "^18.8.5",
"@types/sharp": "^0.31.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}