-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 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
65
66
67
68
{
"name": "@codecov/integration-tests",
"version": "1.0.0",
"description": "",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"test:e2e": "bun test fixtures/*",
"test:e2e:update": "bun test --update-snapshots",
"test:e2e:astro": "bun test fixtures/**/astro/*",
"test:e2e:bundle-analyzer": "bun test fixtures/**/bundle-analyzer/*",
"test:e2e:nextjs": "bun test fixtures/**/nextjs/*",
"test:e2e:nuxt": "bun test fixtures/**/nuxt/*",
"test:e2e:remix": "bun test fixtures/**/remix/*",
"test:e2e:rollup": "bun test fixtures/**/rollup/* ",
"test:e2e:sveltekit": "bun test fixtures/**/sveltekit/*",
"test:e2e:vite": "bun test fixtures/**/vite/*",
"test:e2e:webpack": "bun test fixtures/**/webpack/*",
"test:e2e:solidstart": "bun test fixtures/**/solidstart/*",
"type-check": "tsc --noEmit",
"clean": "rm -rf node_modules",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "pnpm lint --fix",
"format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --write",
"format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --check"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@codecov/astro-plugin": "workspace:*",
"@codecov/bundle-analyzer": "workspace:^",
"@codecov/bundler-plugin-core": "workspace:^",
"@codecov/nuxt-plugin": "workspace:^",
"@codecov/remix-vite-plugin": "workspace:^",
"@codecov/rollup-plugin": "workspace:^",
"@codecov/solidstart-plugin": "workspace:^",
"@codecov/sveltekit-plugin": "workspace:^",
"@codecov/vite-plugin": "workspace:^",
"@codecov/webpack-plugin": "workspace:^",
"@remix-run/dev": "^2.9.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@solidjs/start": "^1.0.10",
"@sveltejs/kit": "^2.12.1",
"@types/bun": "^1.0.6",
"@types/node": "^20.11.15",
"bun": "^1.1.4",
"isbot": "^4.1.0",
"nuxt": "3.14.1592",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollupV3": "npm:[email protected]",
"rollupV4": "npm:[email protected]",
"ts-node": "^10.9.2",
"vite-plugin-solid": "^2.11.0",
"viteV4": "npm:[email protected]",
"viteV5": "npm:[email protected]",
"viteV6": "npm:[email protected]",
"vue-routerV4": "npm:[email protected]",
"vueV3": "npm:[email protected]",
"webpackV5": "npm:[email protected]"
},
"volta": {
"extends": "../package.json"
}
}