-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.97 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@mm0202/react-float",
"version": "0.0.3",
"description": "npm react components package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mm0202-package/react-float.git"
},
"bugs": {
"url": "https://github.com/mm0202-package/react-float/issues"
},
"homepage": "https://github.com/mm0202-package/react-float#readme",
"scripts": {
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"lint": "eslint ./**/*.{js,ts,jsx,tsx}",
"lint:fix": "eslint ./**/*.{js,ts,jsx,tsx} --fix",
"stylelint": "stylelint ./**/*.{css,scss,ts,tsx,js,jsx}",
"stylelint:fix": "stylelint --fix ./**/*.{css,scss,ts,tsx,js,jsx}",
"lints": "yarn lint && yarn stylelint",
"lints:fix": "yarn lint:fix && yarn stylelint:fix",
"test": "jest --forceExit --detectOpenHandles --maxWorkers=1",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open",
"build": "rimraf dist && tsc",
"prepublishOnly": "yarn build"
},
"husky": {
"hooks": {
"pre-push": "yarn lints"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"styled-components": "^5.1.1"
},
"devDependencies": {
"@material-ui/core": "^4.10.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"typescript": "~3.7.2",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/preset-create-react-app": "^3.0.0",
"@storybook/react": "^5.3.19",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/faker": "^4.1.12",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"faker": "^4.1.0",
"husky": "^4.2.5",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"stylelint": "^13.5.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-scss": "^3.17.2",
"ts-jest": "^25.5.1"
}
}