-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
{
"name": "media-monitor",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "webpack-dev-server",
"build": "NODE_ENV=production webpack --mode=production",
"build-dev": "NODE_ENV=development webpack --mode=development",
"test-units": "TS_NODE_FILES=true TS_NODE_PROJECT=tsconfig.test.json mocha -r ts-node/register -r jsdom-global/register -r src/fake-chrome.ts src/**/*.spec.ts",
"test-ui": "jest",
"bundle-stats": "webpack --profile --json > webpack-stats.json"
},
"main": "src/index.tsx",
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"axios": "^1.4.0",
"lodash-es": "^4.17.21",
"mobx": "latest",
"mobx-react": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-button": "^0.7.2",
"typeface-roboto": "^1.1.13",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.5",
"@types/chai": "^4.3.5",
"@types/faker": "^6.6.9",
"@types/jest": "^29.5.2",
"@types/lodash-es": "^4.17.7",
"@types/mocha": "^10.0.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/sinon": "^10.0.15",
"babel-loader": "^9.1.2",
"chai": "^4.3.7",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"faker": "^6.6.6",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.5.0",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"sinon": "^15.2.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.3",
"typescript": "^5.1.5",
"url-loader": "^4.1.1",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-dev-server": "^4.15.1",
"webpack-hot-middleware": "^2.25.4"
}
}