-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.98 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/polyfill": "^7.10.1",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loader-spinner": "^4.0.0",
"react-parallax": "^3.2.1",
"react-router-dom": "^5.1.2",
"semantic-ui-react": "^0.88.2",
"web-vitals": "^1.1.1"
},
"scripts": {
"start": "webpack-dev-server --hot --mode development --host 0.0.0.0",
"build": "webpack --mode production",
"test": "jest --testTimeout=10000 --verbose --ci --testResultsProcessor=\"jest-junit\"",
"sample_tests": "jest --testTimeout=10000 --verbose --ci --testResultsProcessor=\"jest-junit\" -- sample.test.js",
"main_tests": "jest --testTimeout=10000 --verbose --ci --testResultsProcessor=\"jest-junit\" -- main.test.js"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"ejs-loader": "^0.5.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"prettier": "^2.0.4",
"style-loader": "^1.2.1",
"svg-url-loader": "^6.0.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0"
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": ".",
"outputName": "xunittest-report.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
}
}