-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.19 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
41
42
43
{
"name": "orca-slicer-api",
"version": "1.0.0",
"description": "A simple REST API for slicing models using OrcaSlicer",
"scripts": {
"start": "node --env-file=.env dist/index.js",
"dev": "tsx --env-file=.env --watch src/index.ts",
"build": "tsc && tsc-esm-fix dist",
"lint": "npx eslint ./src/**",
"lint:fix": "npx eslint ./src/** --fix",
"test:e2e": "vitest run"
},
"author": "Felix Lange",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@types/multer": "^1.4.12",
"archiver": "^7.0.1",
"cors": "^2.8.5",
"express": "^5.1.0",
"multer": "^2.1.1",
"swagger-ui-express": "^5.0.1",
"unzipper": "^0.12.3"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/archiver": "^6.0.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.1",
"@types/node": "^22.15.17",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"@types/unzipper": "^0.10.11",
"eslint": "^9.26.0",
"globals": "^16.1.0",
"supertest": "^7.1.4",
"tsc-esm-fix": "^3.1.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vitest": "^4.0.16"
}
}