forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
51 lines (51 loc) · 1.73 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.6"
},
"scripts": {
"build": "cd packages/inferno-scripts && node bin/inferno-scripts.js build",
"create-inferno-app": "node tasks/cra.js",
"create-inferno-app-ts": "node tasks/cra-ts.js",
"e2e": "tasks/e2e-simple.sh",
"e2e:docker": "tasks/local-test.sh",
"postinstall": "npm run build:prod -w inferno-error-overlay",
"publish": "tasks/publish.sh",
"publish-force": "tasks/publish-force.sh",
"start": "cd packages/inferno-scripts && node bin/inferno-scripts.js start",
"screencast": "node ./tasks/screencast.js",
"screencast:error": "svg-term --cast jyu19xGl88FQ3poMY8Hbmfw8y --out screencast-error.svg --window --at 12000 --no-cursor",
"alex": "alex .",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js test/integration",
"test:integration:debug": "node --inspect-brk --experimental-vm-modules node_modules/jest/bin/jest.js test/integration",
"test": "cd packages/inferno-scripts && node bin/inferno-scripts.js test",
"eslint": "eslint .",
"prettier": "prettier .",
"format": "npm run prettier -- --write"
},
"devDependencies": {
"ajv": "^8.12.0",
"alex": "^11.0.1",
"eslint": "^8.56.0",
"eslint-plugin-ft-flow": "^3.0.3",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"get-port": "^7.0.0",
"globby": "^14.0.0",
"hermes-eslint": "^0.19.1",
"jest": "^29.7.0",
"lerna": "^8.1.2",
"meow": "^13.2.0",
"multimatch": "^7.0.0",
"prettier": "^3.2.5",
"puppeteer": "^22.0.0",
"strip-ansi": "^7.1.0",
"tempy": "^3.1.0",
"wait-for-localhost": "^4.0.1",
"web-vitals": "^3.5.2"
}
}