-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "bonita-data-repository",
"version": "1.0.0",
"description": "",
"main": "target/src/server/starter.js",
"bin": "target/src/server/starter.js",
"scripts": {
"start": "node .",
"typescript-compile": "tsc --build tsconfig.json",
"package": "pkg --no-bytecode --public-packages \"*\" --public --out-path ./target/binaries -t node16-linux-x64,node16-macos-x64,node16-macos-arm64,node16-win-x64 .",
"prettier:check": "prettier --check \"src/**/*.js\"",
"prettier:fix": "prettier --write \"src/**/*.js\"",
"test": "jest 2>&1",
"test:dev": "jest --watch",
"listDependencies": "license-checker --json --production > ./target/bonita-data-repository-dependencies.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"express-graphql": "^0.12.0",
"graphql": "^16.8.1",
"graphql-voyager": "^2.0.0",
"request": "^2.88.2",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/node": "^20.12.5",
"@types/express": "^4.17.21",
"@types/jest": "^27.0.3",
"@types/supertest": "^6.0.2",
"@types/winston": "^2.4.4",
"husky": "^9.0.11",
"jest": "^27.4.4",
"license-checker": "^25.0.1",
"mock-fs": "^5.2.0",
"pkg": "^5.8.1",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"supertest": "^6.3.4",
"ts-jest": "^27.1.1",
"jest-junit" : "^16.0.0",
"typescript": "^4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/bonitasoft/bonita-data-repository"
}
}