-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.92 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
97
{
"name": "FuBoFleaMarket",
"version": "1.0.0",
"description": "A flea market web site for fu-bo",
"main": "app/app.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"deploy": "yarn run build && gh-pages -d build",
"lint-staged": "lint-staged",
"eslint:fix": "eslint --fix",
"eslint": "eslint --fix --ext .js app test",
"git:add": "git add",
"start": "webpack-dev-server --host 0.0.0.0 --devtool eval --progress --colors --hot --content-base build --history-api-fallback",
"test": "cross-env NODE_ENV=test mocha --recursive --compilers js:babel-register --require ./test/setup.js --reporter mochawesome",
"test:watch": "yarn test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/FuBoTeam/fubo-flea-market.git"
},
"author": "ben196888, ElaineHuang",
"license": "ISC",
"bugs": {
"url": "https://github.com/FuBoTeam/fubo-flea-market/issues"
},
"homepage": "https://fuboteam.github.io/fubo-flea-market/",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.11.5",
"chai": "^3.5.0",
"cross-env": "^2.0.0",
"css-loader": "^0.26.1",
"dirty-chai": "^1.2.2",
"enzyme": "^2.4.1",
"eslint": "^3.2.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"express": "^4.14.0",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^9.4.1",
"lint-staged": "^2.0.3",
"mocha": "^2.5.3",
"mochawesome": "^1.4.0",
"postcss-cssnext": "^2.9.0",
"postcss-loader": "^1.3.0",
"postcss-nested": "^1.0.0",
"pre-commit": "^1.1.3",
"react-hot-loader": "^1.3.0",
"remote-redux-devtools": "^0.3.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"belle": "^3.0.1",
"exports-loader": "^0.6.3",
"graphql": "^0.7.0",
"immutable": "^3.8.1",
"imports-loader": "^0.7.0",
"moment": "^2.17.1",
"normalize.css": "^4.2.0",
"react": "^15.3.0",
"react-bootstrap": "^0.30.3",
"react-css-modules": "^3.7.10",
"react-dom": "^15.3.0",
"react-dropzone-component": "^1.2.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"react-router-redux": "^4.0.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-auth": "0.0.5-beta5",
"redux-graphql-middleware": "^0.1.5",
"redux-saga": "^0.11.0",
"redux-thunk": "^2.1.0"
},
"lint-staged": {
"*.@(js|jsx)": [
"eslint:fix",
"git:add"
]
},
"pre-commit": [
"lint-staged"
]
}