-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.21 KB
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
{
"name": "react-scratch",
"version": "1.0.0",
"main": "index.js",
"author": "tony <anthony.kerz@gmail.com>",
"license": "MIT",
"scripts": {
"build-dev": "webpack --config webpack/webpack.dev.config.js",
"build-prod": "webpack -p --config webpack/webpack.prod.config.js",
"dev": "webpack-dev-server --config webpack/webpack.dev.config.js --progress --colors --hot --inline",
"prod": "webpack-dev-server --config webpack/webpack.prod.config.js --progress --colors --hot --inline",
"ava": "env DEBUG=app:*,test:* NODE_ENV=auto ava test/ava"
},
"dependencies": {
"auth0-lock": "^10.16.0",
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bootstrap": "^3.3.7",
"config": "^1.26.1",
"css-loader": "^0.28.4",
"debug": "^2.6.8",
"eslint-config-prettier": "^2.1.1",
"eslint-config-xo-react": "^0.12.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-react": "^7.0.1",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.11.2",
"font-awesome": "^4.7.0",
"history": "^4.6.3",
"html-webpack-plugin": "^2.28.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"minimatch": "^3.0.4",
"node-sass": "^4.5.3",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-redux-auth": "^0.1.1",
"react-redux-toastr": "^7.0.0",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-actions": "^2.0.3",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"redux-logger": "^3.0.6",
"redux-pack": "^0.1.5",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"xo": "^0.18.2",
"xo-loader": "^0.8.0"
},
"xo": {
"extends": "xo-react",
"useEslintrc": true
}
}