-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "jest",
"lint": "eslint \"**/*.{js,jsx}\" --fix && stylelint **/*.css --fix"
},
"dependencies": {
"add": "^2.0.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"reakit": "^1.2.4",
"yarn": "^1.22.4",
"@material-ui/core": "^4.11.0",
"@material-ui/lab": "^4.0.0-alpha.56",
"classnames": "2.2.6"
},
"devDependencies": {
"snowpack": "^2.9.0",
"@snowpack/app-scripts-react": "^1.10.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest-dom": "^3.2.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-testing-library": "^3.8.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"prettier": "^2.0.5",
"stylelint": "^13.7.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},"lint-staged": {
"*.js": [
"yarn lint"
],
"*.css": [
"yarn lint"
]
}
}