-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
40
{
"name": "imageprocessingapi",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "Daniel Tickell",
"type": "module",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"jasmine": "jasmine",
"prettier": "prettier --config .prettierrc './src/**/*.ts' --write",
"test": "npm run build && npm run jasmine",
"start": "nodemon --ignore 'assets/**/*' --exec ts-node src/index.ts",
"startbuild": "npm run build && nodemon build/index.js",
"lint": "npx eslint src"
},
"dependencies": {
"express": "^5.1.0",
"sharp": "^0.34.1"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jasmine": "^5.1.8",
"@types/supertest": "^6.0.3",
"@types/typescript": "^0.4.29",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.4.0",
"express": "^5.1.0",
"jasmine": "^5.7.1",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0"
}
}