-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.55 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
{
"name": "assignment",
"version": "0.1.0",
"private": true,
"homepage": "https://danielheene.github.io/assignment/",
"scripts": {
"start": "react-app-rewired start",
"test": "react-app-rewired test",
"build": "react-app-rewired build",
"postinstall": "run-s package:*",
"package:dedupe": "yarn-deduplicate -s fewer yarn.lock",
"package:sort": "sort-package-json",
"package:types": "typesync | grep -q 'npm install' && yarn install --ignore-scripts || exit 0"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"prettier": {
"bracketSpacing": true,
"endOfLine": "lf",
"quoteProps": "consistent",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"dependencies": {
"@emotion/react": "11.1.5",
"date-fns": "2.19.0",
"nanoid": "3.1.21",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "4.2.0",
"rxjs": "6.6.6"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@emotion/babel-plugin": "^11.2.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/eslint-plugin": "^11.2.0",
"@testing-library/dom": "^7.30.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "12.8.3",
"@types/babel__core": "7.1.12",
"@types/babel__preset-env": "^7.9.1",
"@types/eslint": "^7.2.7",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^26.0.15",
"@types/node": "14.14.34",
"@types/prettier": "2.2.2",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.2",
"@types/testing-library__jest-dom": "^5.9.5",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"customize-cra": "^1.0.0",
"eslint": "7.22.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-security-node": "1.0.14",
"eslint-plugin-simple-import-sort": "7.0.0",
"npm-run-all": "latest",
"prettier": "latest",
"react-app-rewire-alias": "1.0.1",
"react-app-rewired": "2.1.8",
"react-scripts": "^4.0.3",
"sort-package-json": "latest",
"typescript": "^4.2.3",
"typesync": "latest",
"yarn-deduplicate": "latest"
}
}