forked from topcoder-platform/micro-frontends-onboarding-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.1 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
{
"name": "@topcoder/micro-frontends-onboarding-app",
"scripts": {
"start": "node server.js",
"dev": "cross-env webpack-dev-server --port 8510 --host 0.0.0.0",
"dev-https": "cross-env webpack-dev-server --https --port 8510 --host 0.0.0.0",
"build": "cross-env APPENV=${APPENV:-prod} APPMODE=${APPMODE:-production} webpack --mode=${APPMODE:-production}",
"analyze": "webpack --mode=production --env.analyze=true",
"lint": "eslint src --ext js,jsx --fix",
"format": "prettier --write \"./**\"",
"test": "cross-env BABEL_ENV=test jest",
"watch-tests": "cross-env BABEL_ENV=test jest --watch",
"coverage": "cross-env BABEL_ENV=test jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/runtime": "^7.8.7",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^9.4.0",
"@types/jest": "^25.2.1",
"@types/systemjs": "^6.1.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^24.9.0",
"babel-plugin-inline-react-svg": "^1.1.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-react-css-modules": "^5.2.6",
"concurrently": "^5.0.1",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react-important-stuff": "^2.0.0",
"eslint-plugin-prettier": "^3.1.1",
"file-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.7",
"jest-cli": "^25.2.7",
"node-sass": "^5.0.0",
"postcss-loader": "^4.0.4",
"postcss-scss": "^3.0.2",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"resolve-url-loader": "^3.1.2",
"sass-loader": "^10.0.5",
"single-spa-react": "^2.14.0",
"style-loader": "^2.0.0",
"systemjs-webpack-interop": "^2.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-config-single-spa-react": "^1.0.3",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@reach/router": "^1.3.4",
"apexcharts": "^3.29.0",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"prop-types": "^15.7.2",
"qs": "^6.10.1",
"rc-checkbox": "^2.3.2",
"react": "^16.12.0",
"react-apexcharts": "^1.3.9",
"react-datepicker": "^3.4.1",
"react-dom": "^16.12.0",
"react-dropzone": "^11.4.2",
"react-redux": "^7.2.2",
"react-redux-toastr": "^7.6.5",
"react-responsive-modal": "^6.0.1",
"react-select": "^4.0.2",
"react-spinners": "^0.11.0",
"reactjs-heap": "^1.0.3",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"tc-auth-lib": "topcoder-platform/tc-auth-lib#1.0.4"
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 11"
],
"volta": {
"node": "10.22.1",
"npm": "6.14.6"
}
}