-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.02 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
{
"name": "handball-scoring",
"version": "1.0.0",
"description": "A app for scoring handball games",
"main": "index.js",
"engines": {
"node": "6.2.1"
},
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --content-base public/ --inline --hot",
"build:staging": "NODE_ENV=staging webpack --progress --profile --colors",
"build:prod": "NODE_ENV=production webpack --progress --profile --colors",
"deploy:staging": "npm run build:staging && firebase deploy -P staging",
"deploy:prod": "npm run build:prod && firebase deploy -P default",
"test": "babel-tape-runner tests/*.js | tap-spec && npm run lint",
"lint": "standard",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georgeF105/handball-scoring.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/georgeF105/handball-scoring/issues"
},
"standard": {
"parser": "babel-eslint"
},
"homepage": "https://github.com/georgeF105/handball-scoring#readme",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"standard": "^8.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"bootstrap": "^3.3.7",
"bootstrap-sass": "^3.3.7",
"css-loader": "^0.23.1",
"file-loader": "^0.9.0",
"firebase": "^3.2.1",
"font-loader": "^0.1.2",
"gh-pages": "^0.11.0",
"immutable": "^3.8.1",
"node-sass": "^3.8.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"react-timeout": "^1.0.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.0",
"sass-resources-loader": "^1.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7"
}
}