forked from JupiterOne/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.64 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint --ext .ts,.tsx,.js,.jsx --cache .",
"test": "jest && yarn format:check",
"test:ci": "yarn lint && yarn build --force && yarn test",
"clean": "yarn lerna clean --yes && yarn clean:build && rm -r node_modules",
"clean:build": "yarn lerna exec \"rm -rf ./dist tsconfig.tsbuildinfo\"",
"prebuild": "yarn clean:build",
"build": "tsc -b packages/integration-sdk-core packages/integration-sdk-runtime packages/integration-sdk-private-test-utils packages/integration-sdk-cli packages/integration-sdk-testing packages/integration-sdk-http-client packages/integration-sdk-entities",
"prebuild:dist": "yarn clean:build",
"build:dist": "lerna run build:dist",
"format": "prettier --write \"**/*.{ts,js,json,md,yml}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md,yml}\"",
"prepush": "yarn lint && yarn build:dist && yarn jest --changedSince main"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-jest": "^27.2.3",
"husky": "^4.2.5",
"jest": "^29.6.1",
"jest-extended": "^4.0.0",
"lerna": "^6.0.0",
"lint-staged": "^10.2.6",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"resolutions": {
"@types/node": "^18"
},
"version": "0.0.0"
}