-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 5.37 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 5.37 KB
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
100
101
102
103
{
"version": "0.0.0",
"name": "sentry-javascript-examples",
"private": true,
"volta": {
"node": "20.12.1",
"yarn": "4.1.1"
},
"packageManager": "yarn@4.1.1",
"scripts": {
"start:proxy-server": "yarn workspace event-proxy-server run start",
"start:proxy-server:express_profiling-crons": "APP_NAME=express_profiling-crons yarn workspace event-proxy-server run start",
"start:proxy-server:express_redis-cache": "APP_NAME=express_redis-cache yarn workspace event-proxy-server run start",
"start:proxy-server:express": "APP_NAME=express yarn workspace event-proxy-server run start",
"start:proxy-server:fastify": "APP_NAME=fastify yarn workspace event-proxy-server run start",
"start:proxy-server:connect": "APP_NAME=connect yarn workspace event-proxy-server run start",
"start:proxy-server:nestjs": "APP_NAME=nestjs yarn workspace event-proxy-server run start",
"start:proxy-server:hapi": "APP_NAME=hapi yarn workspace event-proxy-server run start",
"start:proxy-server:koa": "APP_NAME=koa yarn workspace event-proxy-server run start",
"start:proxy-server:browser": "APP_NAME=browser-vanilla yarn workspace event-proxy-server run start",
"start:proxy-server:astro": "APP_NAME=astro yarn workspace event-proxy-server run start",
"start:proxy-server:nextjs-13_2_0": "APP_NAME=nextjs-13_2_0 yarn workspace event-proxy-server run start",
"start:proxy-server:nextjs-14_2_1": "APP_NAME=nextjs-14_2_1 yarn workspace event-proxy-server run start",
"start:proxy-server:sveltekit-2": "APP_NAME=sveltekit-2 yarn workspace event-proxy-server run start",
"start:proxy-server:react-rotuer": "APP_NAME=react-router yarn workspace event-proxy-server run start",
"start:proxy-server:remix": "APP_NAME=remix yarn workspace event-proxy-server run start",
"start:app:express_profiling-crons": "yarn workspace express_profiling-crons-test-application run start",
"start:app:express_redis-cache": "yarn workspace express_redis-cache-test-application run start",
"start:app:express": "yarn workspace express-test-application run start",
"start:app:fastify": "yarn workspace fastify-test-application run start",
"start:app:connect": "APP_NAME=connect yarn workspace connect-test-application run start",
"start:app:nestjs": "yarn workspace nestjs-test-application run start",
"start:app:hapi": "yarn workspace hapi-test-application run start",
"start:app:koa": "yarn workspace koa-test-application run start",
"start:app:browser": "yarn workspace browser-test-application run dev",
"start:app:astro": "yarn workspace astro-test-application run dev",
"start:app:nextjs-13_2_0": "yarn workspace nextjs-13_2_0-test-application run dev",
"start:app:nextjs-14_2_1": "yarn workspace nextjs-14_2_1-test-application run dev",
"start:app:sveltekit-2": "yarn workspace sveltekit-2-test-application run dev",
"start:app:react-router": "yarn workspace react-router-test-application run dev",
"start:app:remix": "yarn workspace remix-test-application run dev",
"start:express_profiling-crons": "run-p start:proxy-server:express_profiling-crons start:app:express_profiling-crons",
"start:express_redis-cache": "run-p start:proxy-server:express_redis-cache start:app:express_redis-cache",
"start:express": "run-p start:proxy-server:express start:app:express",
"start:fastify": "run-p start:proxy-server:fastify start:app:fastify",
"start:connect": "run-p start:proxy-server:connect start:app:connect",
"start:nestjs": "run-p start:proxy-server:nestjs start:app:nestjs",
"start:hapi": "run-p start:proxy-server:hapi start:app:hapi",
"start:koa": "run-p start:proxy-server:koa start:app:koa",
"start:browser": "run-p start:proxy-server:browser start:app:browser",
"start:astro": "run-p start:proxy-server:astro start:app:astro",
"start:nextjs-13_2_0": "run-p start:proxy-server:nextjs-13_2_0 start:app:nextjs-13_2_0",
"start:nextjs-14_2_1": "run-p start:proxy-server:nextjs-14_2_1 start:app:nextjs-14_2_1",
"start:sveltekit-2": "run-p start:proxy-server:sveltekit-2 start:app:sveltekit-2",
"start:react-router": "run-p start:proxy-server:react-router start:app:react-router",
"start:remix": "run-p start:proxy-server:remix start:app:remix",
"fix:prettier": "prettier . --write",
"fix:lint": "yarn run eslint --fix",
"lint": "yarn run eslint",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"workspaces": [
"utils/event-proxy-server",
"apps/express_profiling-crons",
"apps/express_redis-cache",
"apps/express",
"apps/fastify",
"apps/connect",
"apps/nestjs",
"apps/hapi",
"apps/koa",
"apps/astro",
"apps/browser-vanilla",
"apps/nextjs-13_2_0",
"apps/nextjs-14_2_1",
"apps/nuxt",
"apps/react-router",
"apps/remix",
"apps/sveltekit-2"
],
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"es-check": "7.1.1",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"ts-node": "10.9.2",
"typescript": "5.4.4",
"typescript-eslint": "^7.6.0"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all"
}
}