-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.75 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
{
"name": "budget",
"version": "0.3.0",
"description": "Budget",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/StarkTechLabs/budget"
},
"author": "mstark5652",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"start": "rewp build --watch",
"build": "rewp build",
"release": "export NODE_ENV=production && npm run build",
"test": "jest --watchAll=false",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage --watchAll=false",
"lint": "standard",
"lint:fix": "standard --fix"
},
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^14.2.1",
"aws-sdk": "^2.1049.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.1",
"jest-cli": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"react-test-renderer": "^17.0.2",
"mime": "^2.6.0",
"rewp": "^0.6.1",
"standard": "^17.0.0"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.6",
"@mui/styles": "^5.2.3",
"@mui/x-data-grid": "^5.12.0",
"@nivo/bar": "^0.79.1",
"@nivo/core": "^0.79.0",
"@nivo/pie": "^0.79.1",
"csv-parse": "^5.1.0",
"dayjs": "^1.11.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"yup": "^0.32.11"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
},
"setupFilesAfterEnv": [
"./src/setupTests.js"
]
}
}