-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"scripts": {
"test": "jest --silent --verbose=true",
"test:watch": "jest --verbose=true --silent --watch",
"start": "webpack-dev-server --hot --progress --colors"
},
"dependencies": {
"axios": "^0.19.0",
"react": "^16.11.0",
"react-countup": "^4.2.3",
"react-dom": "^16.11.0",
"styled-components": "^4.4.1",
"styled-components-breakpoint": "^2.1.1",
"victory": "^33.1.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/helpers": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@babel/runtime": "^7.5.5",
"@testing-library/jest-dom": "git://github.com/shadrech/jest-dom.git",
"@testing-library/react": "^9.3.2",
"@types/axios": "^0.14.0",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.11",
"@types/react-countup": "^4.0.1",
"@types/styled-components": "^4.1.21",
"@types/victory": "^33.0.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^0.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2",
"waait": "^1.0.5",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"^.+.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testMatch": [
"**/?(*.)+(test).ts?(x)"
],
"setupFilesAfterEnv": [
"./jest.setup.ts"
]
},
"engines": {
"node": "^13.0.1"
}
}