-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1003 Bytes
/
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
{
"name": "virus-sim-next",
"version": "0.1.0",
"description": "An interactive implementation of Problem Set 12 the MIT 6.00 course Introduction to computer science and programming",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn test && next build",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@types/react-query": "^1.1.2",
"@types/styled-components": "^5.1.9",
"isomorphic-unfetch": "^3.1.0",
"next": "10.0.9",
"ramda": "^0.27.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-query": "^3.12.2",
"recharts": "^2.0.8",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.1",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/ramda": "^0.27.39",
"@types/react": "^17.0.3",
"babel-plugin-styled-components": "^1.12.0",
"jest": "^26.6.3",
"typescript": "^4.2.3"
}
}