This repository has been archived by the owner on Jun 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 2.52 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
{
"name": "logary-project",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"lerna:prepare": "lerna bootstrap && lerna link && lerna run build",
"dev": "lerna bootstrap && lerna link && lerna run build --stream",
"test": "lerna run test",
"test:e2e": "yarn test && concurrently --success first \"yarn cypress:run\" \"yarn start:samples:app\"",
"test:e2e:record": "yarn test && concurrently --kill-others --success first \"yarn cypress:run:record\" \"yarn start:samples:app\"",
"build": "lerna run build",
"build:browser:webpack": "webpack --config webpack.config.cjs --mode=production",
"build:browser:copy": "cp packages/logary-browser/dist/* examples/with-plain-html/js/",
"build:browser": "yarn build:browser:webpack && yarn build:browser:copy",
"build:browser:watch": "webpack --config webpack.config.cjs --mode=production --watch",
"build:samples:app": "cd examples/with-nextjs-app && yarn && yarn build",
"start:samples:app": "cd examples/with-nextjs-app && yarn && yarn build && NODE_ENV=test yarn start",
"cypress:open": "cypress open",
"cypress:run": "wait-on http://localhost:3000/ && cypress run",
"cypress:run:record": "wait-on http://localhost:3000/ && cypress run --record",
"cypress:run:nocoverage": "wait-on http://localhost:3000/ && cypress run --env coverage=false",
"publish": "lerna run publish",
"new-version": "lerna version --conventional-commits --yes",
"diff": "lerna diff",
"docs": "typedoc --name 'Logary JS' --out docs --target es6 --theme minimal --mode modules src --exclude 'tests/**/*'",
"lint": "eslint --ext .ts,.tsx packages/**"
},
"bugs": {
"url": "https://github.com/logary/logary-js/issues"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn lint"
}
},
"devDependencies": {
"@opentelemetry/node": "^0.18.1",
"@opentelemetry/plugin-document-load": "^0.13.0",
"@opentelemetry/plugin-http": "^0.18.0",
"@opentelemetry/plugin-https": "^0.18.0",
"@opentelemetry/web": "^0.18.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-loader": "^8.1.0",
"concurrently": "^6.0.0",
"cypress": "^6.0.0",
"eslint": "^7.9.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"ts-loader": "^8.0.4",
"tslib": "^2.0.1",
"typescript": "^4.0.2",
"wait-on": "^5.2.0",
"webpack": "^5.3.0",
"webpack-cli": "^4.1.0"
},
"resolutions": {
"webpack": "^5.3.0"
}
}