-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 875 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 875 Bytes
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
{
"name": "ldes-bucketizers",
"private": true,
"repository": "https://github.com/TREEcg/bucketizers",
"workspaces": [
"packages/*"
],
"scripts": {
"build-changed": "lerna run build --since HEAD",
"build": "npx lerna run build",
"test": "jest",
"clean": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"prepare": "husky install",
"lerna": "lerna",
"watch": "tsc && tsc -w"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@jest/globals": "^29.7.0",
"@rdfjs/types": "^1.1.0",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"lerna": "^7.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@treecg/types": "^0.4.5",
"winston": "^3.11.0"
}
}