-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.77 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
{
"name": "nexus-report-plugin",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "webpack --config webpack.prod.js && webpack --config webpack.dev.js",
"test": "jest --config src/frontend/jest.config.js",
"test-coverage": "jest --config src/frontend/jest.config.js --coverage",
"test-watch": "jest --config src/frontend/jest.config.js --watch",
"test-watch-debug": "node --inspect-brk node_modules/.bin/jest --config src/frontend/jest.config.js --runInBand --watchAll",
"watch": "webpack --config webpack.dev.js --watch"
},
"dependencies": {
"@babel/runtime": "=7.6.0",
"@fortawesome/fontawesome-svg-core": "=1.2.19",
"@fortawesome/free-solid-svg-icons": "=5.9.0",
"@xstate/react": "=1.0.0-rc.3",
"@sonatype/react-shared-components": "=1.2.1",
"axios": ">=0.21.1",
"classnames": "=2.2.6",
"react": "=16.11.0",
"react-dom": "=16.11.0",
"xstate": "=4.7.5"
},
"devDependencies": {
"@babel/core": "=7.4.5",
"@babel/plugin-transform-runtime": "=7.6.0",
"@babel/preset-env": "=7.4.5",
"@babel/preset-react": "=7.0.0",
"@babel/plugin-proposal-class-properties": "=7.7.0",
"@testing-library/jest-dom": "=4.2.4",
"@testing-library/react": "=9.4.0",
"acorn": "=7.1.1",
"babel-jest": "=24.8.0",
"babel-loader": "=8.0.6",
"babel-polyfill": "=6.26.0",
"copy-modules-webpack-plugin": "=2.0.4",
"css-loader": "=3.0.0",
"file-loader": "=6.0.0",
"jest": "=24.8.0",
"jest-junit": "=7.0.0",
"mini-css-extract-plugin": "=0.7.0",
"node-sass": "=4.13.1",
"optimize-css-assets-webpack-plugin": "=5.0.3",
"sass-loader": "=7.1.0",
"terser-webpack-plugin": "=1.3.0",
"webpack": "=4.44.2",
"webpack-cli": "=3.3.11",
"webpack-merge": "=4.2.2"
}
}