forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.85 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.85 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
{
"private": true,
"version": "0.0.2",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "cd packages/react-scripts && node bin/react-scripts.js build",
"changelog": "lerna-changelog",
"create-react-app": "node tasks/cra.js",
"e2e": "tasks/e2e-simple.sh",
"e2e:docker": "tasks/local-test.sh",
"publish": "bash tasks/publish.sh",
"start": "cd packages/react-scripts && node bin/react-scripts.js start",
"test-format": "cd packages/react-scripts && node bin/react-scripts.js format",
"screencast": "node ./tasks/screencast.js",
"screencast:error": "svg-term --cast jyu19xGl88FQ3poMY8Hbmfw8y --out screencast-error.svg --window --at 12000 --no-cursor",
"alex": "alex .",
"test:integration": "jest test/integration",
"test": "cd packages/react-scripts && node bin/react-scripts.js test",
"format": "prettier --write \"packages/*/*.js\" \"packages/*/!(node_modules)/**/*.js\"",
"compile:lockfile": "node tasks/compile-lockfile.js"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.0.2",
"alex": "^8.1.1",
"eslint": "^7.26.0",
"eslint-plugin-prettier": "^3.4.0",
"execa": "5.1.1",
"fs-extra": "^10.0.0",
"get-port": "^5.1.1",
"globby": "^12.0.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lerna": "4.0.0",
"lerna-changelog": "^2.1.0",
"lint-staged": "^11.0.0",
"meow": "^10.0.0",
"multimatch": "^5.0.0",
"prettier": "^2.3.0",
"strip-ansi": "^6.0.0",
"svg-term-cli": "^2.1.1",
"tempy": "^2.0.0",
"wait-for-localhost": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
"prettier --write"
]
},
"packageManager": "yarn@3.0.2"
}