-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "react-page-plugins",
"version": "1.0.0",
"description": "react-page plugins",
"homepage": "https://github.com/junminahn/react-page-plugins",
"directories": {
"packages": "packages",
"example": "examples"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"llink": "lerna link",
"build": "lerna run build",
"clean": "lerna clean",
"format": "git ls-files '*.js' '*.jsx' '*.ts' '*.tsx' | xargs prettier --write",
"lint": "git ls-files '*.js' '*.jsx' '*.ts' '*.tsx' | xargs yarn eslint"
},
"author": "Junmin Ahn",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"devDependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"chalk": "^4.1.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^9.1.0",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.15",
"postcss-cli": "^8.3.1",
"postcss-custom-properties": "^11.0.0",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"react": "^17.0.1",
"rimraf": "^3.0.2",
"yargs": "^16.2.0"
}
}