-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 2.26 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"private": true,
"repository": "https://github.com/informatievlaanderen/ldes2service",
"engines": {
"node": ">=14.0"
},
"scripts": {
"start": "node ./packages/ldes-replicator/bin/ldes-replicator.js -s",
"build-changed": "lerna run build --since HEAD",
"build": "rm -rf packages/*/*.d.ts && npm run build:ts",
"build:ts": "tsc",
"start:docker": "node docker_setup.js && npm run start",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules npx jest __tests__/unit",
"test:integration": "jest __tests__/integration",
"test:integration:docker": "sudo docker-compose -f docker-compose.test.yml up -d && sleep 2 && npm run test:integration && sudo docker-compose -f docker-compose.test.yml down",
"eslint": "eslint --ext ts",
"eslint:cache": "npm run eslint -- --cache",
"prettier": "prettier --check \"./**/*.{ts,json,md,yml}\"",
"lint": "npm run eslint",
"lint:prettier": "npm run eslint && npm run prettier",
"lint:fix": "npm run eslint -- --fix && npm run prettier -- --write",
"clean": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"lerna": "lerna",
"initDB": "npm run build && node ./packages/ldes-manager/bin/orm/init.js",
"server": "npm run build && node ./packages/ldes-manager/bin/server.js",
"watch": "tsc && tsc -w"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"babel-jest": "^29.4.3",
"eslint": "^7.30.0",
"eslint-config-es": "3.29.11",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-unused-imports": "^1.1.2",
"jest": "^29.4.3",
"lerna": "^4.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.3.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"pre-commit": [
"build",
"lint"
],
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 110,
"arrowParens": "avoid"
},
"name": "ldes2service"
}