-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.53 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
{
"name": "mercadolibre",
"version": "1.0.0",
"description": "MercadoLibre",
"main": "index.js",
"author": "Malcolm Rebughini",
"license": "MIT",
"scripts": {
"test": "jest --coverage --config ./jest.config.json",
"test:watch": "npm run test -- --watch",
"serve": "NODE_ENV=development nodemon server/index.js",
"serve:prod": "npm run build && NODE_ENV=production nodemon server/index.js",
"build": "rm -rf www && NODE_ENV=production webpack --progress --json --colors --config ./config/webpack.config.production.js > stats.json && mv stats.json www/stats.json",
"lint": "eslint app --ext .js,.jsx --color --config ./.eslintrc"
},
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"express-yields": "^1.1.0",
"history": "^4.6.3",
"intl": "^1.2.5",
"morgan": "^1.8.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-helmet": "^5.1.3",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "next",
"redux": "^3.7.1",
"redux-saga": "^0.15.4"
},
"devDependencies": {
"asset-require-hook": "^1.1.0",
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"css-modules-require-hook": "^4.0.6",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.2.1",
"extract-text-webpack-plugin": "^3.0.0",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^20.0.4",
"jest-junit": "^2.1.0",
"jsdom": "^11.1.0",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"postcss-loader": "^2.0.6",
"react-hot-loader": "next",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.1.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.2"
}
}