-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
{
"name": "image-processing-api",
"version": "1.0.0",
"description": "node image-processing-ai",
"main": "server.js",
"scripts": {
"start_build": "node dist/server.js",
"start_dev": "nodemon --watch src --exec \"ts-node\" src/server.ts",
"build": "npx tsc",
"jasmine": "jasmine",
"test": "npm run build && npm run jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CaffeineIssues/image-processing-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CaffeineIssues/image-processing-api/issues"
},
"homepage": "https://github.com/CaffeineIssues/image-processing-api#readme",
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/eslint": "^8.4.10",
"@types/express": "^4.17.14",
"@types/helmet": "^4.0.0",
"@types/jasmine": "^4.3.0",
"@types/mime-types": "^2.1.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.9",
"@types/nodemon": "^1.19.2",
"@types/sharp": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.18.2",
"helmet": "^6.0.0",
"jasmine": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"sharp": "^0.31.3",
"ts-dotenv": "^0.9.0",
"uuidv4": "^6.2.13"
}
}