forked from hupe1980/gatsby-theme-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.43 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
{
"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",
"start:www": "yarn workspace www start",
"build:simple": "yarn workspace example-simple build",
"build:typescript": "yarn workspace example-typescript build",
"build:using-redux": "yarn workspace example-using-redux build",
"build:www": "yarn workspace www build",
"prepare": "lerna run prepare",
"all:outdated": "yarn outdated",
"all:upgrade": "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/*",
"www"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-eslint": "^10.0.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"lerna": "^3.22.1",
"prettier": "^2.0.5"
}
}