-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
85 lines (85 loc) · 2.82 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
{
"name": "upgrade-helper",
"version": "0.1.0",
"license": "MIT",
"homepage": "https://react-native-community.github.io/upgrade-helper",
"scripts": {
"build": "EXTEND_ESLINT=true react-app-rewired build",
"docker-test-e2e": "yarn start-and-wait && react-app-rewired test --watchAll=false --onlyChanged=false --testPathPattern='/__tests__/.*(\\.|).e2e.spec.(js|jsx|ts|tsx)?$'",
"lint": "eslint . --cache --report-unused-disable-directives",
"typecheck": "tsc --noEmit",
"prepare": "husky install",
"start": "EXTEND_ESLINT=true react-app-rewired start",
"start-and-wait": "yarn start & wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 -t 30 http://localhost:3000/",
"test": "react-app-rewired test --watchAll=false --onlyChanged=false --testPathPattern='/__tests__/((?!e2e).)*.spec.(js|jsx|ts|tsx)?$'",
"test-e2e": "docker-compose run tests"
},
"dependencies": {
"@ant-design/icons": "^5.3.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"antd": "^5.14.0",
"date-fns": "^2.29.3",
"framer-motion": "^11.0.3",
"markdown-to-jsx": "7.1.9",
"query-string": "8.1.0",
"react": "18.2.0",
"react-content-loader": "6.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-diff-view": "^3.2.0",
"react-dom": "18.2.0",
"react-dom-confetti": "0.2.0",
"react-ga": "3.3.1",
"react-github-btn": "1.4.0",
"react-scripts": "5.0.1",
"semver": "7.3.8",
"use-persisted-state": "^0.3.3"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^11.11.0",
"@emotion/eslint-plugin": "^11.11.0",
"@jest/globals": "^29.7.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.12",
"@types/jest-image-snapshot": "^6.4.0",
"@types/markdown-to-jsx": "^7.0.1",
"@types/node": "^20.11.16",
"@types/react": "18.2.0",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.18",
"@types/semver": "^7.5.6",
"@types/use-persisted-state": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"customize-cra": "^1.0.0",
"eslint": "^8.35.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "5.0.0",
"husky": "8.0.3",
"jest-image-snapshot": "6.4.0",
"prettier": "2.8.4",
"pretty-quick": "3.1.3",
"puppeteer": "10.0.0",
"react-app-rewired": "^2.2.1",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"src/**/*.*(js|jsx|ts|tsx)\"",
"pre-push": "yarn run lint"
}
}
}