-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 981 Bytes
/
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
{
"name": "web_autodesk_data",
"version": "1.0.0",
"description": "basic API for interacting with autodesk APIs",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "tsc && node src/index.ts",
"test": "tsc && jest --config ./jest.config.ts /dist/test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bimsharp/web_autodesk_data.git"
},
"author": "bimsharp",
"license": "MIT",
"bugs": {
"url": "https://github.com/bimsharp/web_autodesk_data/issues"
},
"homepage": "https://github.com/bimsharp/web_autodesk_data#readme",
"dependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.7.4",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"glob": "^11.0.0",
"joi": "^17.13.3",
"path": "^0.12.7",
"pg": "^8.13.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0"
}
}