-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.82 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.82 KB
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
{
"name": "cancer-models",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && touch ./out/.nojekyll",
"start": "next start",
"lint": "next lint",
"sb": "start-storybook -p 6006",
"sb:build": "build-storybook",
"test": "jest",
"test:watch": "jest --watchAll",
"cy": "start-server-and-test dev 3000 cy:run",
"cy:open": "start-server-and-test dev 3000 cy:openDefault",
"cy:openDefault": "cypress open",
"cy:run": "cypress run",
"prepare": "husky install"
},
"dependencies": {
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.2.3",
"@nivo/bar": "^0.80.0",
"@nivo/circle-packing": "^0.80.0",
"@nivo/core": "^0.80.0",
"@nivo/geo": "^0.80.0",
"@nivo/pie": "^0.80.0",
"@nivo/sunburst": "^0.80.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"cypress-real-events": "^1.7.4",
"d3": "^7.9.0",
"d3-dtree": "^2.4.1",
"driver.js": "^1.3.1",
"gray-matter": "^4.0.3",
"husky": "^8.0.2",
"jest-environment-jsdom": "^29.3.1",
"lodash": "^4.17.21",
"next": "13.5.9",
"normalize.css": "^8.0.1",
"plotly.js": "^2.35.2",
"react": "18.2.0",
"react-cookie": "^6.1.1",
"react-dom": "18.2.0",
"react-ga4": "^2.1.0",
"react-google-recaptcha": "^3.1.0",
"react-hotjar": "^6.2.0",
"react-plotly.js": "^2.6.0",
"react-query": "^3.39.3",
"react-select": "^5.7.0",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.1",
"sharp": "^0.32.5",
"start-server-and-test": "^1.14.0",
"storybook-addon-next-router": "^4.0.2",
"ts-jest": "^29.0.3"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@jest/globals": "^29.3.1",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@types/d3": "^7.4.3",
"@types/jest": "^29.2.3",
"@types/node": "18.7.16",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.14",
"@types/react-google-recaptcha": "^2.1.5",
"@types/react-plotly.js": "^2.6.3",
"babel-loader": "^8.3.0",
"css-loader": "^6.7.2",
"cypress": "^11.2.0",
"eslint": "8.23.1",
"eslint-config-next": "13.0.4",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.8",
"msw": "^0.49.1",
"plotly.js-dist-min": "^2.35.2",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"typescript": "4.8.3"
},
"resolutions": {
"enhanced-resolve": "5.10.0",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.14"
},
"msw": {
"workerDirectory": "public"
}
}