forked from makeorbreak-io/mob-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.89 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mob-web",
"version": "0.0.1",
"main": "index.js",
"engines": {
"node": "^10.15.0"
},
"repository": "git@github.com:makeorbreak-io/mob-web.git",
"author": "João Gradim <joao.gradim@gmail.com>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --colors --progress --history-api-fallback",
"build": "NODE_ENV=production webpack --config webpack.config.production.babel.js -p --colors --progress",
"clean": "rm -rf build/*",
"copy:production": "rsync -az --force --delete --progress -e \"ssh -p22\" ./build/ deploy@makeorbreak.io:/var/www/psc-web/",
"deploy:production": "yarn run clean && yarn run build && yarn run copy:production",
"lint": "eslint src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"generate-component": "babel-node ./tools/generate-component.js"
},
"devDependencies": {
"ajv": "^5.3.0",
"autoprefixer": "^7.0.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"commander": "^2.9.0",
"css-loader": "^0.28.1",
"eslint": "^4.18.2",
"eslint-loader": "^1.7.1",
"eslint-plugin-react": "^7.0.0",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"img-loader": "^2.0.0",
"json-loader": "^0.5.4",
"path": "^0.12.7",
"postcss-loader": "^2.0.5",
"style-loader": "^0.17.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"svgo-loader": "^1.2.1",
"uglifyjs-webpack-plugin": "^1.2.3",
"url-loader": "^0.5.9",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.9",
"apollo-client": "^2.2.5",
"apollo-link-context": "^1.0.5",
"apollo-link-http": "^1.3.3",
"axios": "^0.16.1",
"bluebird": "^3.5.0",
"classnames": "^2.2.5",
"core-js": "^2.5.3",
"date-fns": "^1.29.0",
"graphql": "^0.13.0",
"graphql-tag": "^2.7.3",
"jsbarcode": "^3.8.0",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"qrcode": "^0.9.0",
"raven-js": "3.17.0",
"react": "16.2.0",
"react-apollo": "^2.0.4",
"react-dom": "16.2.0",
"react-hot-loader": "^3.0.0",
"react-markdown": "^2.5.0",
"react-onclickoutside": "^6.1.1",
"react-qr-reader": "^2.1.0",
"react-redux": "^5.0.4",
"react-router": "^3.0.5",
"react-select": "^1.0.0-rc.5",
"react-sortable-hoc": "^0.6.7",
"react-tooltip": "^3.3.0",
"recompose": "^0.23.4",
"redux": "^3.6.0",
"redux-actions": "^2.0.3",
"redux-form": "^6.7.0",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.2.0",
"uuid": "^3.0.1"
}
}