-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 816 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 816 Bytes
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
{
"private": true,
"workspaces": [
"docs",
"packages/*"
],
"scripts": {
"lint": "eslint .",
"prettier": "prettier --check .",
"test": "yarn lint && yarn prettier && yarn workspace @10xjs/form test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"eslint": "7.29.0",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-standard": "5.0.0",
"jest": "27.0.6",
"prettier": "2.3.2",
"typescript": "4.3.4"
}
}