-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
127 lines (127 loc) · 3.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "rovercode-ui",
"version": "0.0.1",
"description": "rovercode web application frontend",
"main": "/src/index.js",
"repository": "https://github.com/rovercode/rovercode-ui",
"author": "Clifton Barnes",
"license": "GPL-3.0",
"private": false,
"scripts": {
"start:local": "webpack serve --hot --config webpack.local.js",
"start:alpha": "webpack serve --hot --config webpack.alpha.js",
"build": "webpack --config webpack.production.js",
"i18n:manage": "node src/translations/runner.js",
"test": "jest --coverage --color",
"test:interactive": "jest --watch --coverage --color",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"lint": "eslint webpack.* src --color --format stylish",
"lint:fix": "eslint webpack.* src --fix --color --format stylish"
},
"jest": {
"globals": {
"LOGGER_ENDPOINT": "",
"SAVE_DEBOUNCE_TIME": "1000",
"SEARCH_DEBOUNCE_TIME": "500"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"./jestsetup.js",
"./helpers.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js",
"!src/translations/runner.js"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
},
"moduleNameMapper": {
".+\\.(png|jpg)$": "<rootDir>/src/assets/images/__mocks__/imageMock.js",
".+\\.(css|less)$": "<rootDir>/src/css/__mocks__/styleMock.js",
"@/(.*)$": "<rootDir>/src/$1"
}
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-stage-2": "^7.8.3",
"axios-mock-adapter": "^1.18.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-react-intl": "^7.9.4",
"css-loader": "^4.3.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-formatjs": "^2.7.11",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.1",
"eslint-plugin-react-hooks": "4.1.2",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^1.4.1",
"mockdate": "^3.0.2",
"react-intl-translations-manager": "^5.0.3",
"redux-mock-store": "^1.5.3",
"style-loader": "^1.2.1",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"@sentry/browser": "^5.24.2",
"@stripe/stripe-js": "^1.11.0",
"axios": "^0.21.2",
"blockly": "^3.20200625.2",
"brace": "^0.11.1",
"favicons": "^6.2.1",
"js-interpreter": "^1.4.6",
"jwt-decode": "^3.0.0-beta.2",
"moment": "^2.29.0",
"prop-types": "^15.6.2",
"query-string": "^6.13.2",
"react": "^16.13.1",
"react-ace": "^9.1.4",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.13.0",
"react-intl": "^5.8.2",
"react-markdown": "^5.0.3",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.1",
"redux-debounced": "^0.5.0",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.0.1",
"redux-thunk": "^2.3.0",
"throttle-debounce": "^2.3.0",
"url-parse": "^1.5.2"
}
}