This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 2.41 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
{
"name": "dotnet-react-demo-app",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^10.0.4",
"cross-env": "^7.0.2",
"chance": "^1.1.6",
"prettier": "^2.0.5"
},
"dependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.9.4",
"autoprefixer": "7.1.6",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-runtime": "6.26.0",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"chalk": "1.1.3",
"clean-webpack-plugin": "^3.0.0",
"connected-react-router": "^6.8.0",
"css-loader": "0.28.7",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "2.0.0",
"fs-extra": "9.0.1",
"history": "^4.6.3",
"html-webpack-plugin": "^3.2.0",
"immutable": "^3.8.1",
"jest": "25.4.0",
"marked": "^0.3.6",
"object-assign": "4.1.1",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "2.0.8",
"promise": "8.1.0",
"prop-types": "^15.5.10",
"raf": "3.4.0",
"react": "^16.3.0",
"react-dev-utils": "^5.0.0",
"react-dom": "^16.3.0",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.1",
"seamless-immutable": "^7.1.3",
"style-loader": "0.19.0",
"superagent": "^3.8.2",
"superagent-promise": "^1.1.0",
"webpack-dev-server": "3.1.11",
"url-loader": "1.1.2",
"webpack": "3.12.0",
"webpack-manifest-plugin": "1.3.2",
"whatwg-fetch": "2.0.3"
},
"scripts": {
"build": "node scripts/build.js",
"coverage": "cross-env NODE_ENV=test jest --coverage",
"dev": "cross-env PORT=4100 node scripts/start.js",
"lint": "prettier --check \"src/client/**/*.{spec.js,js}\"",
"lintfix": "prettier --write \"src/client/**/*.{spec.js,js}\"",
"test": "cross-env NODE_ENV=test jest"
},
"jest": {
"collectCoverageFrom": [
"src/client/**/*.{js,jsx,mjs}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/src/client/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/client/**/?(*.)(spec|test).{js,jsx,mjs}"
]
},
"prettier": {
"tabWidth": 4
}
}