-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.12 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.12 KB
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
{
"name": "@genstackio/libs",
"version": "0.0.0",
"description": "JS Libraries by Genstackio",
"author": "Olivier Hoareau <cto@genstackio.co>",
"private": true,
"license": "ISC",
"scripts": {
"deploy-storybooks": "storybook-to-aws-s3 --bucket-path=dev-genstack-platform-storybook/ --aws-profile=genstack-dev --packages=packages --out=public",
"test": "jest --config jest.config.js",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^4.0.0",
"jest": "^27.0.5",
"typescript": "^4.3.4",
"@types/node": "^15.12.4",
"aws-sdk": "^2.933.0",
"@types/jest": "^26.0.23",
"ts-jest": "^27.0.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@testing-library/dom": "^8.0.0",
"@genjs/genjs": "^0.4.21",
"@genjs/genjs-plugin-monorepo-js-libs": "^0.4.30",
"@genjs/genjs-plugin-cicd-github": "^0.6.13",
"tailwindcss": "^2.2.4",
"postcss": "^8.3.5",
"autoprefixer": "^10.2.6",
"@storybook/storybook-deployer": "^2.8.10",
"postcss-loader": "^4.2.0",
"yo": "^4.2.0",
"prettier": "^2.3.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-for-of-loops": "^1.0.1",
"eslint-plugin-no-function-declare-after-return": "^1.1.0",
"@typescript-eslint/parser": "^4.28.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"react-docgen-typescript": "^2.0.0"
},
"resolutions": {
"@material-ui/data-grid": "4.0.0-alpha.30",
"postcss-loader": "4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}