-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.95 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
92
93
94
95
96
{
"name": "foodcourts-demo",
"version": "0.0.1",
"description": "demo app on React/Redux",
"main": "app.js",
"scripts": {
"prod:ci:build": "npm run clean && npm i && npm run prod:build",
"prod:build": "webpack -p --config webpack.production.config.js",
"develop:ci:build": "npm run clean && npm i && npm run develop:build",
"develop:build": "npm i && webpack -d --config webpack.develop.config.js",
"develop:devserver": "webpack-dev-server --hot --history-api-fallback --config webpack.develop.config.js",
"lint": "eslint develop test --fix --cache --ignore-pattern .gitignore",
"test": "mocha --compilers js:babel-core/register --recursive --require ./test/setup.js",
"test:watch": "npm test -- --watch",
"clean": "rm -rf public/ node_modules/ && npm cache clean",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://gooduling.github.io/foodpoints-demo.git"
},
"keywords": [
"Redux",
"React",
"ES2015",
"Babel",
"Webpack",
"Mocha",
"Chai",
"d3"
],
"author": {
"name": "Ulianenko Andrii",
"email": "[email protected]"
},
"license": "ISC",
"homepage": "https://gooduling.github.io/foodpoints-demo#readme",
"dependencies": {
"axios": "^0.11.1",
"babel-polyfill": "^6.9.1",
"d3": "^4.3.0",
"history": "^2.0.0",
"install": "^0.8.2",
"leaflet": "^1.0.1",
"moment": "^2.16.0",
"npm": "^3.10.9",
"query-string": "^3.0.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-google-maps": "^6.0.1",
"react-leaflet": "^1.0.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.1",
"react-search-input": "^0.10.3",
"react-waypoint": "^3.1.1",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.10",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"css-loader": "^0.22.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^1.7.0",
"jsdom": "^7.2.2",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"nock": "^4.1.0",
"node-sass": "^3.8.0",
"pre-commit": "^1.1.3",
"react-hot-loader": "^1.3.0",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.1.1",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-notifier": "^1.4.1"
}
}