-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
110 lines (110 loc) · 3.22 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
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
107
108
109
110
{
"name": "visual",
"version": "0.1.0",
"homepage": "./",
"private": true,
"dependencies": {
"@jiaminghi/data-view-react": "^1.2.3",
"echarts": "^4.7.0",
"react": "^16.13.1",
"react-countup": "^4.3.3",
"react-dom": "^16.13.1",
"react-transition-group": "^4.4.1",
"react-wow": "^1.0.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-arrow-functions": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"autoprefixer": "^6.7.2",
"babel-eslint": "7.1.1",
"babel-loader": "^8.1.0",
"chalk": "1.1.3",
"cheerio": "^1.0.0-rc.3",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^4.0.0",
"connect-history-api-fallback": "1.3.0",
"copy-webpack-plugin": "^6.0.2",
"cross-spawn": "4.0.2",
"css-loader": "^3.5.3",
"detect-port": "1.1.0",
"dotenv": "2.0.0",
"eslint": "3.16.1",
"eslint-config-react-app": "^0.6.2",
"eslint-loader": "1.6.0",
"eslint-plugin-flowtype": "2.21.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.4.1",
"file-loader": "^6.0.0",
"fs-extra": "0.30.0",
"generate-asset-webpack-plugin": "^0.3.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^4.3.0",
"http-proxy-middleware": "^1.0.4",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"object-assign": "4.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"promise": "^7.1.1",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"react-dev-utils": "^10.2.1",
"style-loader": "^1.2.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^2.11.5",
"webpack-manifest-plugin": "1.1.0",
"whatwg-fetch": "2.0.2"
},
"scripts": {
"start": "webpack-dev-server --progress --color --config config/webpack.config.dev.js",
"build": "webpack -p --progress --color --config config/webpack.config.prod.js",
"server": "node serve/index.js"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules|scripts)[/\\\\]"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
]
}