This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.38 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@sentry/replay",
"version": "0.6.14",
"description": "User replays for Sentry",
"main": "build/npm/index.js",
"module": "build/npm/index.es.js",
"types": "build/npm/types/src/index.d.ts",
"sideEffects": false,
"scripts": {
"bootstrap": "yarn && cd demo && yarn #TODO: change after migration",
"build": "NODE_ENV=production yarn build:all",
"build:dev": "NODE_ENV=development yarn build:all",
"build:all": "run-s clean build:worker build:core",
"build:core": "yarn build:rollup --config config/rollup.config.core.ts",
"build:worker": "yarn build:rollup --config config/rollup.config.worker.ts",
"build:rollup": "rollup --configPlugin @rollup/plugin-typescript",
"build:watch": "NODE_ENV=production yarn build:all:watch",
"build:dev:watch": "NODE_ENV=development yarn build:all:watch",
"build:all:watch": "yarn clean && run-p \"build:worker --watch\" \"build:core --watch\"",
"build:npm": "ts-node ./scripts/tmp-prepack.ts --bundles && npm pack ./build/npm #TODO: use JS sdk prepack script after migration",
"circularDepCheck": "#TODO comment in after migration: madge --circular src/index.ts",
"clean": "rimraf build sentry-replay-*.tgz",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "eslint . --format stylish --fix",
"fix:prettier": "prettier --write \"{src,test,scripts,worker}/**/*.ts\"",
"lint": "run-s lint:prettier lint:eslint",
"lint:eslint": "eslint . --format stylish #TODO: we might want to use eslintcache after migration",
"lint:prettier": "prettier --check \"{src,test,scripts,worker}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"start:demo": "yarn build:dev && cd demo && yarn start",
"build:prod": "yarn build #TODO remove, we don't need this anymore after migration",
"dev": "yarn build:dev:watch #TODO remove, we don't need this anymore after migration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getsentry/sentry-replay.git"
},
"author": "Sentry",
"license": "MIT",
"bugs": {
"url": "https://github.com/getsentry/sentry-replay/issues"
},
"homepage": "https://github.com/getsentry/sentry-replay#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@sentry-internal/eslint-config-sdk": "^7.20.1",
"@sentry/browser": "^7.7.0",
"@size-limit/file": "^8.1.0",
"@size-limit/time": "^8.1.0",
"@types/jest": "27.5.1",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "^18.11.0",
"@types/pako": "^2.0.0",
"eslint": "7.32.0",
"jest": "27.5.1",
"jest-environment-jsdom": "27.5.1",
"jsdom-worker": "^0.2.1",
"npm-run-all": "^4.1.5",
"pako": "^2.0.4",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.0",
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^8.1.0",
"ts-jest": "27.1.4",
"ts-node": "10.9.1",
"tslib": "2.3.1",
"typescript": "3.8.3"
},
"dependencies": {
"@sentry/core": "^7.7.0",
"@sentry/types": "^7.7.0",
"@sentry/utils": "^7.7.0",
"lodash.debounce": "^4.0.8",
"rrweb": "^1.1.3"
},
"size-limit": [
{
"path": "build/npm/index.js",
"limit": "4500ms"
}
],
"volta": {
"node": "14.21.1",
"yarn": "1.22.19"
}
}