-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
41 lines (41 loc) · 1.41 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
{
"name": "root",
"private": true,
"license": "MIT",
"scripts": {
"start:simple": "yarn workspace example-simple start",
"start:typescript": "yarn workspace example-typescript start",
"start:using-redux": "yarn workspace example-using-redux start",
"build:simple": "yarn workspace example-simple build",
"build:typescript": "yarn workspace example-typescript build",
"build:using-redux": "yarn workspace example-using-redux build",
"prepare": "lerna run prepare",
"outdated:all": "yarn outdated",
"upgrade:all": "yarn upgrade-interactive --latest",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "eslint . --fix",
"test": "yarn workspace gatsby-material-ui-components test"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"babel-preset-gatsby-package": "^2.20.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^5.3.0",
"prettier": "^2.6.2"
}
}