-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
61 lines (61 loc) · 2.17 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
{
"name": "root",
"version": "0.0.0",
"description": "Automatically generated package.json, please edit manually",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/sdk"
},
"license": "UNLICENSED",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"yarn": "PLEASE USE NPM"
},
"scripts": {
"lint": "eslint --ext .ts,.tsx,.js,.jsx --cache .",
"test": "jest && npm run format:check",
"test:changed": "jest --changedSince main",
"test:ci": "npm run lint && npm run build --force && npm run test",
"clean": "npm run lerna clean --yes && npm run clean:build && rm -r node_modules",
"clean:build": "npm exec lerna exec \"rm -rf ./dist tsconfig.tsbuildinfo\"",
"prebuild": "npm run clean:build",
"build": "tsc -b packages/integration-sdk-entity-validator 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": "npm run 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": "npm run lint && npm run build:dist && npm run test:changed"
},
"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": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"husky": "^4.2.5",
"jest": "^29.6.1",
"jest-extended": "^4.0.0",
"lerna": "^7.1.4",
"lint-staged": "^10.2.6",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.5.2"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "16.5.1",
"@nx/nx-darwin-x64": "16.5.1",
"@nx/nx-linux-x64-gnu": "16.5.1",
"@nx/nx-win32-x64-msvc": "16.5.1"
},
"resolutions": {
"@types/node": "^18"
}
}