forked from DataDog/browser-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.56 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
93
94
95
96
97
98
99
{
"name": "browser-sdk",
"description": "browser SDK",
"private": true,
"workspaces": [
"packages/*",
"developer-extension",
"performances"
],
"scripts": {
"postinstall": "scripts/cli update_submodule",
"build": "lerna run build --stream",
"build:bundle": "lerna run build:bundle --stream",
"format": "prettier --check .",
"lint": "scripts/cli lint .",
"typecheck": "scripts/cli typecheck . && scripts/cli typecheck developer-extension",
"dev": "node scripts/dev-server.js",
"release": "scripts/cli release",
"version": "scripts/cli version",
"test": "yarn test:unit:watch",
"test:unit": "karma start ./test/unit/karma.local.conf.js",
"test:unit:watch": "yarn test:unit --no-single-run",
"test:unit:bs": "node ./scripts/bs-wrapper.js karma start test/unit/karma.bs.conf.js",
"test:e2e": "yarn build && (cd test/app && rm -rf node_modules && yarn && yarn build) && wdio test/e2e/wdio.local.conf.js",
"test:e2e:bs": "yarn build && (cd test/app && rm -rf node_modules && yarn && yarn build) && node ./scripts/bs-wrapper.js wdio test/e2e/wdio.bs.conf.js",
"test:compat:tsc": "scripts/cli check_typescript_compatibility",
"test:compat:ssr": "scripts/cli check_server_side_rendering_compatibility",
"rum-events-format:sync": "scripts/cli update_submodule && scripts/cli build_json2type && node scripts/generate-schema-types.js",
"woke": "scripts/cli woke"
},
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@types/chrome": "0.0.180",
"@types/connect-busboy": "1.0.0",
"@types/cors": "2.8.12",
"@types/express": "4.17.8",
"@types/jasmine": "3.6.3",
"@types/sinon": "9.0.10",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"@wdio/browserstack-service": "7.19.1",
"@wdio/cli": "7.19.3",
"@wdio/jasmine-framework": "7.18.0",
"@wdio/junit-reporter": "7.19.1",
"@wdio/local-runner": "7.18.0",
"@wdio/selenium-standalone-service": "7.19.1",
"@wdio/spec-reporter": "7.19.1",
"ajv": "6.12.6",
"browserstack-local": "1.4.9",
"connect-busboy": "1.0.0",
"cors": "2.8.5",
"emoji-name-map": "1.2.9",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-module-utils": "2.7.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jasmine": "4.1.3",
"eslint-plugin-jsdoc": "39.1.1",
"eslint-plugin-local-rules": "1.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-unicorn": "42.0.0",
"express": "4.17.3",
"glob": "8.0.1",
"jasmine-core": "3.6.0",
"js-polyfills": "0.1.43",
"json-schema-to-typescript": "bcaudan/json-schema-to-typescript#bcaudan/add-readonly-support",
"karma": "6.3.17",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-junit-reporter": "2.0.1",
"karma-sourcemap-loader": "0.3.8",
"karma-spec-reporter": "0.0.33",
"karma-webpack": "5.0.0",
"lerna": "6.0.1",
"minimatch": "5.0.1",
"node-fetch": "3.2.10",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"sinon": "9.2.4",
"terser-webpack-plugin": "5.1.1",
"ts-loader": "9.2.8",
"ts-node": "10.7.0",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.6.3",
"webdriverio": "7.19.3",
"webpack": "5.28.0",
"webpack-cli": "4.5.0",
"webpack-dev-middleware": "4.1.0"
},
"resolutions": {
"ansi-regex": "5.0.1"
},
"volta": {
"node": "16.3.0",
"yarn": "1.22.18"
}
}