-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
44
45
46
47
48
49
{
"name": "parameterized_g_code",
"version": "1.1.0",
"description": "Bachelor Thesis. G-Code with Variables: Generation of parameterised G-Code",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx,json,md}'"
},
"keywords": [],
"author": "Vlad <v.bruilo@icloud.com>",
"license": "MIT",
"dependencies": {
"@jamesgopsill/prusa-link": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"axios": "^1.8.2",
"eslint-plugin-prettier": "^5.4.0",
"express": "^4.18.2",
"form-data": "^4.0.2",
"handlebars": "^4.7.8",
"dotenv": "^16.5.0"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"@types/node-fetch": "^2.6.12",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.0.0",
"typescript": "^5.8.3",
"@types/supertest": "^2.0.12"
},
"repository": "https://github.com/VBruilo/g-code-with-variables.git"
}