-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "ChromeExtension",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.2.0",
"@fortawesome/fontawesome-svg-core": "^1.2.8",
"@fortawesome/free-solid-svg-icons": "^5.5.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"axios": "^0.18.0",
"bootstrap": "^4.3.0",
"jquery": "^3.3.1",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"moment": "^2.24.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-bootstrap": "^1.0.0-beta.5",
"react-dom": "^16.6.1",
"react-global-configuration": "^1.3.0",
"react-icons": "^3.3.0",
"react-lazyload": "^2.3.0",
"react-loading": "^2.0.3",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-runtime": "^6.23.0",
"css-loader": "^2.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"write-file-webpack-plugin": "^4.5.0"
},
"scripts": {
"build": "webpack",
"watch": "webpack-dev-server --progress --colors --watch",
"server": "webpack-dev-server",
"push": [
"yarn install && yarn build && git add . && git commit -m \"wip\" && git push origin master"
]
}
}