-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 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
{
"name": "clm-ext-learning_objects",
"main": "./dist/src/lib/Corelib.js",
"types": "./dist/src/lib/Corelib.d.ts",
"version": "1.0.0",
"description": "",
"files": [
"dist"
],
"scripts": {
"dev": "npx nodemon --legacy-watch server.ts",
"start": "node dist/server.js",
"build": "rm -rf ./dist && npx tsc",
"build-docs": "tsc && api-extractor run --local && api-documenter markdown --input-folder api-extractor --output-folder docs",
"test": "echo \"Error: no test specified\" && exit 1",
"build-commit": "npm run build && npm run git-push",
"git-push": "git add . && git commit -m 'updated lib' && git push"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/ramda": "^0.29.9",
"@types/xml2js": "^0.4.11",
"axios": "^0.27.2",
"clm-core": "git+https://github.com/fraunhoferfokus/clm-core.git#main",
"clm-ext-service_providers": "git+https://github.com/fraunhoferfokus/clm-ext-service_providers.git#main",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"ts-node": "^10.7.0",
"typescript": "^5.3.3",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/node": "^17.0.33"
}
}