-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "genetic-programming",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.7",
"hsl-to-hex": "^1.0.0",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6",
"recharts": "^2.1.8",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.5",
"@types/hsl-to-hex": "^1.0.0",
"@types/jest": "^27.0.3",
"@types/node": "17.0.2",
"@types/react": "17.0.37",
"babel-jest": "^27.4.5",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"jest": "^27.4.5",
"prettier": "2.2.1",
"prettier-config-standard": "^4.0.0",
"typescript": "4.5.4"
},
"prettier": "prettier-config-standard",
"jest": {
"verbose": true
}
}