-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "flow",
"version": "0.0.3",
"description": "Chrome plugin to track distracting site visits and alert you when you may be spending too much time on them.",
"main": "eventPage.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack -w --mode development --config webpack.dev.js",
"prod": "webpack --mode production --config webpack.prod.js"
},
"author": "daftgopher",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-app": "^2.2.0",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.10",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.0.6",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"moment": "^2.21.0",
"react": "^15.4.2",
"react-chrome-redux": "^1.3.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.4",
"react-svg-loader": "^2.1.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"uuid": "^3.0.1"
}
}