-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
{
"name": "babelscripts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --colors --config webpack.config.js --mode=production",
"dev": "webpack --watch --progress --colors --config webpack.config.js --mode=development",
"test": "standard --verbose | snazzy"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-plugin-react-transform": "^3.0.0",
"babel-preset-minify": "^0.5.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"jest": "^23.6.0",
"json-loader": "^0.5.7",
"object-assign": "^4.1.1",
"raw-loader": "^1.0.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-loader": "0.0.1"
},
"standard": {
"globals": [
"chrome",
"fetch",
"Audio"
]
},
"dependencies": {
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@material-ui/core": "^3.9.0",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^3.0.0-alpha.10",
"@types/chrome": "0.0.81",
"babel-core": "^7.0.0-bridge.0",
"cheerio": "^1.0.0-rc.3",
"react": "^16.7.0",
"react-circular-progressbar": "^1.0.0",
"react-dom": "^16.7.0",
"react-swipeable-views": "^0.13.1",
"react-vis": "^1.11.6",
"webpack-notifier": "^1.7.0"
}
}