-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.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
{
"name": "@solarwinds-apm/solarwinds-apm",
"private": true,
"license": "Apache-2.0",
"packageManager": "[email protected]",
"workspaces": [
"examples",
"examples/*",
"packages/*",
"packages/bindings/npm/*",
"scripts"
],
"scripts": {
"build": "turbo run build --continue",
"build:watch": "turbo watch build",
"docker": "node scripts/docker.js",
"example": "node scripts/example.js",
"lambda": "node scripts/lambda.js",
"lint": "prettier --check *.json *.md .github && turbo run lint --continue",
"lint:fix": "prettier --write *.json *.md .github && turbo run lint:fix --continue",
"publish": "turbo run build && turbo run release",
"scan": "turbo run scan && node scripts/lambda.js solarwinds-apm && node scripts/scan.js",
"test": "turbo run test --continue",
"test:watch": "turbo watch test",
"version:latest": "node scripts/version.js",
"version:prerelease": "node scripts/version.js pre",
"version:testing": "node scripts/testing.js",
"prepare": "husky"
},
"devDependencies": {
"eslint": "^9.12.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"turbo": "^2.2.0",
"typescript": "~5.7.2"
}
}