-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 2.5 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
65
66
67
68
69
70
71
72
73
{
"name": "o11y-sample-parent",
"description": "Sample application to demonstrate the 'o11y' observability platform",
"private": true,
"version": "250.2.0",
"author": "[email protected]",
"bugs": "https://github.com/salesforce/o11y-sample-app/issues",
"engines": {
"node": "18.x",
"npm": ">=7.4.3",
"yarn": "~1.22.19"
},
"volta": {
"node": "18.17.1",
"yarn": "1.22.19",
"npm": "8.19.3"
},
"homepage": "https://github.com/salesforce/o11y-sample-app",
"keywords": [
"distributed tracing",
"instrumentation",
"o11y",
"observability",
"olly",
"telemetry",
"lwc"
],
"license": "MIT",
"repository": "salesforce/o11y-sample",
"scripts": {
"init": "lerna run init --concurrency 1",
"clean": "lerna run clean",
"clean:deep": "./scripts/deep-clean.sh",
"build": "lerna run build",
"build:clean": "yarn clean && yarn run init && yarn build",
"build:client": "cd packages/client && yarn build",
"build:server": "cd packages/server && yarn build",
"build:update:major": "node ./scripts/version.js major && yarn build:clean",
"build:update:minor": "node ./scripts/version.js minor && yarn build:clean",
"build:update:build": "node ./scripts/version.js build && yarn build:clean",
"lint": "lerna run lint",
"prettier": "lerna run prettier",
"prettier:verify": "lerna run prettier:verify",
"start": "cd packages/server && yarn start:withweb",
"start:both": "run-p start:server start:client",
"start:client": "cd packages/client && yarn start",
"start:server": "cd packages/server && yarn start",
"watch:both": "run-p watch:client watch:server",
"watch:client": "cd packages/client && yarn watch",
"watch:server": "cd packages/server && yarn watch",
"test:lockfile": "./scripts/check-yarn-lock.sh",
"postinstall": "yarn run init",
"test": "echo 'No Tests'",
"version:minor": "node ./scripts/version.js minor"
},
"devDependencies": {
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"resolutions": {
"ansi-regex": "5.0.1",
"browserslist": "4.20.2",
"glob-parent": "6.0.2",
"immer": "9.0.12",
"minimist": "1.2.6",
"node-forge": "1.3.0"
}
}