-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.32 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
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
100
101
102
103
104
{
"name": "react-tec",
"version": "0.6.1",
"license": "MIT",
"author": "Stuart Casarotto",
"main": "dist/index.js",
"module": "dist/react-tec.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./docs/ --no-dll",
"build-and-deploy": "yarn run build-storybook && yarn run s3-deploy && yarn run set-cache-control && echo '🚀 Deployed!!!'",
"s3-deploy": "s3cmd sync ./docs/* s3://www.react-tec.com --acl-public --delete-removed --guess-mime-type --no-mime-magic --no-preserve --cf-invalidate-default-index",
"set-cache-control": "s3cmd modify --add-header 'Cache-Control: no-cache, must-revalidate' s3://www.react-tec.com/index.html"
},
"peerDependencies": {
"react": ">=16",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"styled-components": "^5.0.0"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@babel/core": "7.15.0",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/react": "^6.3.7",
"@testing-library/react": "12.0.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/react-icons": "^3.0.0",
"@types/react-router-dom": "^5.1.8",
"@types/styled-components": "^5.1.13",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@weiran.zsd/tsdx": "^0.16.1",
"babel-jest": "^27.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.9.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"jest-styled-components": "^7.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-router": "^5.2.1",
"react-router-dom": "^5.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"styled-components": "^5.3.1",
"tslib": "2.3.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"@testing-library/jest-dom": "^5.14.1",
"@types/color": "^3.0.2",
"@types/react-avatar-editor": "^10.3.6",
"@types/react-datepicker": "^4.1.5",
"@types/react-phone-number-input": "^3.0.11",
"@types/react-select": "^4.0.17",
"color": "^3.1.3",
"react-avatar-editor": "12.0.0",
"react-datepicker": "^4.2.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-phone-number-input": "^3.1.26",
"react-popper": "^2.2.5",
"react-select": "^4.3.1"
},
"jest": {
"setupFilesAfterEnv": [
"./src/setupTests.ts"
]
},
"repository": {
"type": "git",
"url": "https://github.com/SCasarotto/react-tec"
},
"bugs": {
"url": "https://github.com/SCasarotto/react-tec/issues"
},
"homepage": "https://github.com/SCasarotto/react-tec"
}