-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.09 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@csmm/monorepo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "ISC",
"scripts": {
"lerna": "lerna",
"lerna:bootstrap": "lerna bootstrap --hoist",
"lint": "eslint . --cache --report-unused-disable-directives --ext .js,.ts,.tsx --max-warnings 0",
"lint:fix": "eslint . --cache --fix --report-unused-disable-directives --ext .js,.ts,.tsx --max-warnings 0",
"stylelint": "stylelint --reportInvalidScopeDisables --reportNeedlessDisables 'packages/**/*.{js,jsx,ts,tsx}'",
"test": "lerna run test",
"build": "lerna run build",
"typescript": "lerna run --no-bail --parallel typescript",
"prepare": "husky install"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"framer-motion": "^4.1.17",
"history": "^5.2.0",
"notistack": "^1.0.7",
"polished": "^4.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.11.1",
"react-icons": "^4.3.1",
"react-router-dom": "^6.2.1",
"simplebar-react": "^2.3.3",
"styled-components": "^5.3.0",
"web-vitals": "^2.1.2"
},
"devDependencies": {
"@types/eslint": "^8.4.1",
"@types/node": "^17.0.13",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.5",
"@types/react-helmet": "^6.1.1",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"react-app-rewired": "^2.1.11",
"sort-package-json": "^1.50.0",
"stylelint": "^14.3.0",
"stylelint-config-recommended": "^6.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
},
"workspaces": [
"packages/*"
]
}