-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 923 Bytes
/
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
{
"name": "jest-worker-spawn-bug",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build-with-loader": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-loader=./test-loader.mjs\" next build",
"start": "next start",
"worker": "node test-worker.js",
"worker-with-loader": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-loader=./test-loader.mjs\" node test-worker.js"
},
"dependencies": {
"next": "^12.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@types/react": "^17.0.20"
},
"packageManager": "yarn@3.1.0",
"dependenciesMeta": {
"jest-worker": {
"unplugged": true
},
"next": {
"unplugged": true
}
},
"resolutions": {
"jest-worker@27.0.0-next.5": "patch:jest-worker@npm:27.3.1#.yarn/patches/jest-worker-console-debug.patch"
}
}