-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
111 lines (111 loc) · 3.88 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "pandemic",
"version": "0.0.1",
"description": "A Redux-based implementation of the board game Pandemic",
"scripts": {
"start-message": "babel-node tools/startMessage.js",
"postinstall": "npm run build",
"prestart": "npm-run-all --parallel start-message remove-dist",
"start": "npm-run-all --parallel test:watch open:src lint:watch",
"open:src": "babel-node tools/srcServer.js",
"open:dist": "babel-node tools/distServer.js",
"lint": "esw webpack.config.* src tools",
"lint:watch": "npm run lint -- --watch",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "rimraf ./dist",
"build:html": "babel-node tools/buildHtml.js",
"prebuild": "npm run clean-dist && npm run build:html && npm run lint && npm run test",
"build": "babel-node tools/build.js",
"test": "mocha tools/testSetup.js \"src/**/*.spec.js\" --reporter progress",
"test:cover": "babel-node node_modules/isparta/bin/isparta cover --include-all-sources --root src --report html node_modules/mocha/bin/_mocha -- --require ./tools/testSetup.js \"src/**/*.spec.js\" --reporter progress",
"test:cover:travis": "babel-node isparta cover --include-all-sources --root src --report lcovonly _mocha -- --require ./tools/testSetup.js \"src/**/*.spec.js\" && cat ./coverage/lcov.info | coveralls.js",
"test:watch": "npm run test -- --watch"
},
"author": "Alex Zherdev",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.9.1",
"bootstrap-sass": "^3.3.6",
"classnames": "^2.2.5",
"clipboard": "^1.5.12",
"jquery": "^3.0.0",
"json-loader": "^0.5.4",
"lodash": "^4.13.1",
"object-assign": "4.1.0",
"platform": "^1.3.1",
"pluralize": "^2.0.0",
"postcss-js": "^0.1.3",
"react": "^15.2.1",
"react-addons-css-transition-group": "^15.2.1",
"react-bootstrap": "^0.30.0-rc.1",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.2.1",
"react-ga": "^2.1.1",
"react-preload": "^0.2.3",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-saga": "^0.10.4",
"redux-state-history": "^0.1.4",
"web-animations-js": "^2.2.1"
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-cli": "6.8.0",
"babel-core": "6.8.0",
"babel-eslint": "^6.1.2",
"babel-loader": "6.2.4",
"babel-plugin-react-display-name": "2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "6.8.0",
"browser-sync": "2.12.5",
"chai": "3.5.0",
"chalk": "1.1.3",
"cheerio": "0.20.0",
"compression": "^1.6.2",
"connect-history-api-fallback": "1.2.0",
"coveralls": "2.11.9",
"cross-env": "1.0.7",
"css-loader": "0.23.1",
"enzyme": "2.2.0",
"eslint": "2.9.0",
"eslint-config-airbnb": "8.0.0",
"eslint-plugin-import": "1.6.1",
"eslint-plugin-jsx-a11y": "1.0.4",
"eslint-plugin-react": "5.0.1",
"eslint-watch": "2.1.11",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"git-revision-webpack-plugin": "^2.2.0",
"isparta": "4.0.0",
"mocha": "2.4.5",
"node-sass": "3.7.0",
"npm-run-all": "1.8.0",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "15.0.2",
"redux-immutable-state-invariant": "1.2.3",
"rimraf": "2.5.2",
"sass-loader": "3.2.0",
"sinon": "1.17.4",
"sinon-chai": "2.8.0",
"style-loader": "0.13.1",
"webpack": "1.13.0",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0"
},
"keywords:": [
"pandemic",
"redux"
],
"repository": {
"type": "git",
"url": "https://github.com/alexzherdev/pandemic"
}
}