generated from appsome-solutions/appsome-boilerplate-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.38 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "persona-share-fe",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.2.1",
"@apollo/react-hooks": "^3.1.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@types/jest": "^24.0.20",
"@types/lodash": "^4.14.149",
"@types/node": "^12.11.7",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-webcam": "^3.0.0",
"@types/uuid": "^8.0.0",
"antd": "^4.3.1",
"apollo-boost": "^0.4.7",
"axios": "^0.19.0",
"cropperjs": "^1.5.6",
"firebase": "^7.6.1",
"formik": "^2.1.2",
"get-pixels": "^3.3.2",
"graphql": "^14.5.8",
"html-to-react": "^1.4.3",
"i18next": "^19.0.0",
"i18next-browser-languagedetector": "^4.0.1",
"jsqr": "^1.2.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"quill-plugin-image-upload": "^0.0.6",
"rc-tween-one": "^2.6.8",
"react": "^16.13.1",
"react-apollo": "^3.1.3",
"react-app-rewired": "^2.1.5",
"react-card-flip": "^1.0.10",
"react-dom": "^16.13.1",
"react-i18next": "^11.0.1",
"react-is": "^16.8",
"react-quill": "^2.0.0-beta.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-use-localstorage": "^3.4.1",
"react-webcam": "^4.0.0",
"serve": "^11.2.0",
"slate": "^0.57.1",
"slate-react": "^0.57.1",
"styled-components": "^5.1.1",
"styled-normalize": "^8.0.7",
"styled-system": "^5.1.4",
"typescript": "^3.9.3",
"uuid": "^8.1.0",
"yup": "^0.28.1"
},
"scripts": {
"start": "react-app-rewired start",
"start:build": "rimraf build && react-app-rewired build && serve -s build",
"build": "cross-env CI=false react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"precommit": "lint-staged"
},
"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"
]
},
"devDependencies": {
"@ant-design/icons": "^4.1.0",
"@babel/plugin-proposal-optional-chaining": "^7.7.4",
"@types/cropperjs": "^1.3.0",
"@types/jwt-decode": "^2.2.1",
"@types/lodash": "^4.14.149",
"@types/quill": "^2.0.3",
"@types/react-router-dom": "^5.1.0",
"@types/styled-components": "^5.1.0",
"@types/styled-system": "^5.1.6",
"@types/yup": "^0.26.30",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"cross-env": "^7.0.2",
"customize-cra": "^0.9.1",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"get-pixels": "^3.3.2",
"husky": "^3.0.9",
"jsqr": "^1.2.0",
"lint-staged": "^9.4.2",
"lodash": "^4.17.15",
"prettier": "prettier/prettier#master",
"pretty-quick": "^2.0.0",
"rimraf": "^3.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"webpack-bundle-analyzer": "^3.6.0",
"worker-loader": "^2.0.0"
},
"lint-staged": {
"*.tsx": [
"eslint --fix",
"git add"
]
}
}