-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.98 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
{
"name": "fund-manager",
"version": "1.0.18",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"start:ci": "next start",
"test": "jest --ci",
"test:watch": "jest --watch",
"cypress:open": "cypress open",
"cypress": "cypress run",
"eslint": "eslint"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@fontsource/roboto": "^4.2.1",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@material-ui/core": "^4.11.3",
"@material-ui/data-grid": "^4.0.0-alpha.21",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.3.10",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"chart.js": "^2.8.0",
"chartjs-plugin-downsample": "^1.1.0",
"date-fns": "^2.19.0",
"jsonwebtoken": "^8.5.1",
"lodash.throttle": "^4.1.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.17",
"next": "10.0.7",
"patternomaly": "^1.3.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "^7.2.2",
"react-virtualized": "^9.22.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1",
"swr": "^0.4.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"babel-jest": "^26.6.3",
"babel-plugin-styled-components": "^1.8.0",
"cypress": "^7.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"node-mocks-http": "^1.10.1",
"react-test-renderer": "^17.0.1"
}
}