-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
{
"name": "optidfs",
"version": "0.1.0",
"private": true,
"browserslist": [
"last 2 versions",
"> 1%"
],
"scripts": {
"develop": "next dev",
"start": "next build && next start -p 8081",
"build": "next build",
"serve": "next start",
"test": "jest",
"test:watch": "jest --watch",
"fix:eslint": "npx eslint --fix **/*.tsx",
"fix:stylelint": "npx stylelint --fix \"src/**/*.scss\"",
"lint": "next lint"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^11.0.1",
"@sentry/browser": "^6.10.0",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.0",
"@tippyjs/react": "^4.2.5",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.1",
"@types/node-fetch": "^2.5.12",
"@types/react": "^17.0.14",
"@types/react-redux": "^7.1.18",
"@types/react-table": "^7.7.2",
"babel-core": "^6.26.3",
"babel-jest": "^27.0.6",
"clsx": "^1.1.1",
"date-fns": "^2.23.0",
"dotenv": "^10.0.0",
"downshift": "^6.1.3",
"eslint": "^7.31.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"express": "^4.17.1",
"fuse.js": "^6.4.6",
"jest": "^27.0.6",
"lodash.get": "^4.4.2",
"lodash.uniqby": "^4.7.0",
"next": "^11.0.1",
"next-redux-wrapper": "^6.0.2",
"next-seo": "^4.26.0",
"node-fetch": "^2.6.1",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-modal": "^3.14.3",
"react-redux": "^7.2.4",
"react-table": "^7.7.0",
"react-test-renderer": "^17.0.2",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-saga": "^1.1.3",
"sass": "^1.36.0",
"stylelint": "^13.13.1",
"stylelint-scss": "^3.20.1",
"stylelint-webpack-plugin": "^3.0.1",
"tailwindcss": "^2.2.7",
"tippy.js": "^6.3.1",
"typescript": "^4.3.5"
}
}