-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.79 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lerna": "lerna",
"test": "lerna run test --parallel -- --coverage",
"test:react": "yarn workspace react-performance-testing test",
"test:jest": "yarn workspace jest-performance-testing test",
"test:cli": "yarn workspace performance-testing-cli test",
"test:clearCache": "lerna run test -- --clearCache",
"build": "lerna run build --parallel",
"build:react": "yarn workspace react-performance-testing build",
"build:jest": "yarn workspace jest-performance-testing build",
"build:cli": "yarn workspace performance-testing-cli build",
"type": "tsc --noEmit",
"lint": "eslint '**/*.{ts,tsx}'",
"prepublishOnly": "yarn type && yarn lint && lerna run prepublish",
"link-all": "lerna exec --parallel yarn link",
"unlink-all": "lerna exec --parallel --bail=false yarn unlink"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.8",
"@testing-library/react-native": "^7.0.1",
"@types/jest": "^26.0.9",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"add": "^2.0.6",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"jest": "^26.2.2",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^16.13.1",
"rollup": "^2.23.1",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.1.4",
"typescript": "^4.3.5",
"yarn": "^1.22.4"
},
"name": "react-performance-testing",
"dependencies": {
"@babel/preset-react": "^7.14.5"
}
}