-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.76 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.76 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
{
"name": "mocky",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.13",
"@reduxjs/toolkit": "^1.3.5",
"@testing-library/dom": "^7.22.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^12.2.2",
"@types/jest": "^26.0.9",
"@types/moment": "^2.13.0",
"@types/node": "^14.0.27",
"@types/randomstring": "^1.1.6",
"@types/react": "^17.0.0",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.9.0",
"@types/react-ga": "^2.3.0",
"@types/react-loader-spinner": "^3.1.0",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.5",
"@types/react-select": "^3.0.13",
"@types/react-textarea-autosize": "^4.3.5",
"@types/unique-random-array": "^2.0.1",
"@types/word-wrap": "^1.2.1",
"@types/yup": "^0.29.4",
"connect-history-api-fallback": "^1.6.0",
"express": "^4.17.1",
"express-sslify": "^1.2.0",
"formik": "^2.1.4",
"moment": "^2.26.0",
"prop-types": "^15.7.2",
"randomstring": "^1.1.5",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"react-ga": "^3.0.0",
"react-loader-spinner": "^3.1.14",
"react-moment": "^0.9.7",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-select": "^3.1.0",
"react-textarea-autosize": "^8.0.1",
"react-typed": "^1.2.0",
"react-use": "^15.3.4",
"redux": "^4.0.5",
"redux-localstorage-simple": "^2.5.1",
"typescript": "~3.9.5",
"unique-random-array": "^2.0.0",
"word-wrap": "^1.2.3",
"yup": "^0.29.1"
},
"scripts": {
"start:dev": "react-scripts start",
"start": "node server.js",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\""
},
"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": {
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "2.5.1",
"prettier": "^2.0.5"
},
"engines": {
"node": "^14"
}
}