-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpackage.json
73 lines (73 loc) · 2.18 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "root",
"private": true,
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:acceptance": "cypress open",
"build": "lerna run build",
"build:packages": "lerna run build --no-private",
"build:site": "lerna run build --scope=create-react-app",
"postinstall": "npm run build:packages",
"lint": "eslint .",
"check-types": "lerna run check-types",
"prettier": "prettier '**/*.js' '**/*.md' '**/*.ts' --write",
"release": "lerna publish",
"clean": "lerna run clean && lerna clean && rm -rf ./node_modules",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-object-rest-spread": "^7.22.5",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/cypress": "^10.0.2",
"@types/jest": "^29.0.3",
"babel-jest": "^29.0.1",
"cross-env": "^7.0.3",
"cypress": "^13.11.0",
"esbuild": "^0.23.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^9.0.11",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"jest-environment-node": "^29.0.1",
"lerna": "^8.1.2",
"lint-staged": "^15.2.0",
"prettier": "^2.7.1",
"rollup": "^2.47.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"ts-jest": "^29.0.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"**/*.js": [
"eslint",
"prettier --write"
]
},
"engines": {
"node": ">=16"
},
"workspaces": [
"packages/*",
"examples/*",
"examples/persisted-queries/*"
]
}