generated from seanmiller802/react-chrome-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
74 lines (74 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
68
69
70
71
72
73
74
{
"name": "BrowserTime",
"version": "1.0.0",
"description": "Turn your browser history into a productivity tool.",
"main": "index.js",
"author": "Sean Miller",
"license": "MIT",
"private": true,
"scripts": {
"start:dev": "node dev-server.js",
"build": "NODE_ENV=production webpack",
"test": "jest",
"doc": "jsdoc -c jsdoc.json"
},
"jest": {
"verbose": true
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@date-io/moment": "1.x",
"@devexpress/dx-react-chart": "^2.6.3",
"@devexpress/dx-react-chart-material-ui": "^2.6.3",
"@devexpress/dx-react-core": "^2.6.3",
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.53",
"@material-ui/pickers": "^3.2.10",
"@material-ui/styles": "^4.9.13",
"@sinonjs/fake-timers": "^6.0.1",
"axios": "^0.21.1",
"d3-format": "^1.4.4",
"d3-shape": "^2.0.0",
"dayjs": "^1.9.6",
"dotenv": "^8.2.0",
"expect": "^26.6.2",
"formik": "^2.2.6",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-window": "^1.8.5",
"react-window-infinite-loader": "^1.0.5",
"sinon": "^9.2.1",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.10.3",
"write-file-webpack-plugin": "^4.5.1",
"yarn": "^1.22.4"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.1",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"moment-locales-webpack-plugin": "^1.2.0",
"react-hot-loader": "^4.12.21",
"style-loader": "^1.2.1",
"webpack-cli": "^3.3.11"
}
}