-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "expense-tracker",
"homepage": "http://kkb-mmmut.github.io/expense-tracker",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/index.js",
"custom-reporter": {
"type": "module"
},
"dependencies": {
"@jest/reporters": "29.3.1",
"@jest/test-result": "29.3.1",
"@jest/types": "29.3.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"jest": "29.3.1",
"jest-json-reporter": "1.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"styled-components": "5.3.6",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"devDependencies": {
"@babel/runtime": "7.13.8",
"gh-pages": "^5.0.0",
"typescript": "4.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy" :"npm run build",
"deploy": "gh-pages -d build",
"test": "react-scripts test --watchAll=false '--testResultsProcessor=<rootDir>/custom-reporter' '--silent' '--maxWorkers=2' ./",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}