-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 loc) · 2.38 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": "food-oasis-frontend",
"version": "0.0.1",
"description": "Food Oasis frontend application",
"scripts": {
"dev": "webpack-dev-server --config ./webpack/webpack-dev.config.js --watch --colors",
"build": "rm -rf dist && webpack --config ./webpack/webpack-server.config.js --colors",
"start": "node server.js",
"test": "mocha --compilers js:babel-core/register --require ./tests/browser.js ./tests/*/*.spec.js",
"test:watch": "npm run test -- --watch",
"lint": "eslint src test webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foodoasisla/frontend/"
},
"author": "Thomas Chen",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"chai": "^3.5.0",
"css-loader": "^0.27.3",
"enzyme": "^2.8.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"nock": "^9.0.9",
"node-sass": "^4.5.0",
"postcss-loader": "^1.3.2",
"react-addons-shallow-compare": "^15.4.2",
"react-addons-test-utils": "^15.0.2",
"redux-mock-store": "^1.2.2",
"sass-loader": "^6.0.3",
"sinon": "^2.1.0",
"style-loader": "^0.16.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"compression": "^1.6.2",
"es6-promise": "^4.0.5",
"express": "^4.13.4",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.2",
"mapbox-gl": "^0.36.0",
"react": "^15.0.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.0.2",
"react-hot-loader": "next",
"react-mapbox-gl": "^1.9.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"reduce-object": "^0.1.3",
"redux": "^3.5.2",
"redux-actions": "^1.2.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0"
},
"engines": {
"node": "6.10.0",
"yarn": "^0.19.1"
}
}