-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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
{
"name": "vanvikil-live",
"version": "0.0.0",
"description": "Vanvik IL Live made with React and Redux",
"main": "src/index.js",
"scripts": {
"clean": "rimraf ./public/assets",
"build:webpack": "NODE_ENV=production webpack --config ./webpack/prod.config.js",
"build": "npm run clean && npm run build:webpack",
"start": "NODE_ENV=production node server.js",
"start:dev": "NODE_ENV=development nodemon --watch server.js --watch webpack server.js",
"lint": "eslint src webpack server",
"release": "npm run build && ./scripts/deploy.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kennethaa/vanvikil-live.git"
},
"keywords": [
"livescore"
],
"author": "Kenneth Aasan",
"license": "MIT",
"bugs": {
"url": "https://github.com/kennethaa/vanvikil-live/issues"
},
"homepage": "https://github.com/kennethaa/vanvikil-live#readme",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"babel-core": "6.7.7",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"bootstrap-sass": "3.3.6",
"compression": "1.6.1",
"css-loader": "0.23.1",
"es6-promise": "3.1.2",
"express": "4.13.4",
"file-loader": "0.8.5",
"isomorphic-fetch": "2.2.1",
"lodash": "4.11.1",
"node-sass": "3.5.3",
"react": "15.0.1",
"react-bootstrap": "0.29.2",
"react-dom": "15.0.1",
"react-fa": "4.0.1",
"react-redux": "4.4.5",
"react-router": "2.3.0",
"react-router-bootstrap": "0.22.1",
"redux": "3.5.2",
"redux-thunk": "2.0.1",
"rimraf": "2.5.2",
"sass-loader": "3.2.0",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.0",
"whatwg-fetch": "0.11.0"
},
"devDependencies": {
"babel-preset-react-hmre": "1.1.1",
"eslint": "2.8.0",
"eslint-config-airbnb": "8.0.0",
"eslint-plugin-import": "1.5.0",
"eslint-plugin-jsx-a11y": "1.0.2",
"eslint-plugin-react": "5.0.1",
"nodemon": "1.9.1",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0"
}
}