-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.76 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.76 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "reactjs-charts",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@jest/transform": "^26.6.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.23",
"@types/node": "^12.0.0",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.0",
"@types/react-vis": "^1.11.6",
"axios": "^0.21.1",
"babel-jest": "^26.6.3",
"babel-loader": "8.1.0",
"classnames": "^2.3.1",
"copy-webpack-plugin": "^6.4.0",
"css": "^3.0.0",
"css-loader": "^5.2.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.0.0",
"husky": "^6.0.0",
"jest": "26.6.0",
"jest-enzyme": "^7.1.2",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"less": "^4.1.1",
"less-loader": "^9.0.0",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.0",
"mobx": "4.11.0",
"mobx-react": "6.1.4",
"mobx-sync": "3.0.0",
"node-sass": "^6.0.0",
"pepjs": "^0.5.3",
"prettier": "^2.2.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-scripts": "^4.0.3",
"react-vis": "^1.11.7",
"reflect-metadata": "^0.1.13",
"sass": "^1.32.13",
"sass-loader": "^11.1.1",
"scss": "^0.2.4",
"scss-loader": "^0.0.1",
"semantic-ui-react": "^2.0.3",
"style-loader": "^2.0.0",
"timezone-mock": "^1.1.4",
"ts-jest": "^26.5.6",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.1.2",
"webpack": "4.44.2",
"webpack-dev-server": "3.11.1",
"webpack-serve": "^4.0.0",
"yarn": "^1.22.10"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "jest --detectOpenHandles"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^6.1.2",
"@semantic-ui-react/craco-less": "^1.2.1",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"react-test-renderer": "^17.0.2",
"semantic-ui-less": "^2.4.1",
"serve": "^11.3.2",
"webpack-cli": "^4.7.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/src/jest/setupTests.ts"
]
}
}