-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.21 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
{
"name": "funding-platform",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "yarn workspaces foreach run build",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
"lint:ts:check": "eslint --fix . --ignore-path .gitignore --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix"
},
"workspaces": [
"npm-pkg/config",
"npm-pkg/contracts-identity",
"experimental/my-react-app",
"experimental/my-controls"
],
"packageManager": "yarn@3.2.0",
"devDependencies": {
"@goldstack/utils-typescript-references": "^0.1.10",
"@next/eslint-plugin-next": "^12.1.5",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-unicorn": "latest",
"eslint-utils": "^3.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
}
}