-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
107 lines (107 loc) · 2.89 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
{
"name": "refinebio-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sentry/browser": "^4.6.4",
"babel-eslint": "^10.1.0",
"classnames": "^2.2.6",
"cross-env": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-import": "^0.13.0",
"formik": "^2.2.9",
"gsap": "^3.6.0",
"history": "^4.7.2",
"isomorphic-unfetch": "^3.0.0",
"jest-environment-jsdom": "^29.3.1",
"lodash": "^4.17.14",
"moment": "^2.29.4",
"next": "^13.1.1",
"next-images": "^1.3.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga": "^2.5.7",
"react-helmet": "^5.2.0",
"react-icons": "^3.7.0",
"react-modal": "^3.8.1",
"react-redux": "^6.0.0",
"react-table": "^6.9.1",
"react-use-visibility": "^0.2.0",
"recharts": "^1.4.2",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sharp": "^0.31.3",
"shortid": "^2.2.14",
"yup": "^0.32.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint"
],
"src/**/*.{js,jsx,json,css,scss}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"dev": "REACT_APP_API_HOST=https://api.refine.bio next",
"dev:local": "yarn dev",
"prebuild": "node cacheBackend.js && node sitemap.js",
"build": "next build",
"start": "next start",
"test": "jest --env=jsdom src/*",
"eslint": "eslint src/ pages/",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"test:integration": "jest --runInBand -c integration/jest.config.js"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.1.1",
"@next/eslint-plugin-next": "^13.1.1",
"@testing-library/react": "^8.0.1",
"axios": "^0.21.4",
"concurrently": "^5.1.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-babel": "^9.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.27.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^1.3.1",
"jest": "^29.3.1",
"jest-dom": "^3.4.0",
"jest-puppeteer": "^4.4.0",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"puppeteer": "^2.1.1",
"redux-mock-store": "^1.5.1",
"sass": "^1.57.1",
"sitemap": "^4.1.1",
"source-map-explorer": "^2.5.3",
"typescript": "^4.9.4"
},
"proxy": "http://localhost:8000/",
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}