-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.18 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.18 KB
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
{
"name": "redouble",
"version": "0.2.0",
"description": "contract bridge game",
"main": "src/server/main.js",
"dependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-regenerator": "^6.3.18",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"cheerio": "^0.19.0",
"co": "^4.6.0",
"co-array": "0.0.3",
"co-body": "^4.0.0",
"dds-node-adapter": "^0.3.0",
"font-awesome": "^4.3.0",
"history": "^1.16.0",
"jrpc2": "^1.0.0",
"jrpc2-ajax": "^0.2.0",
"jrpc2-proxy": "^0.2.1",
"koa": "^1.0.0",
"koa-compressor": "^1.0.3",
"koa-conditional-get": "^1.0.3",
"koa-etag": "^2.0.0",
"koa-favicon": "^1.2.0",
"koa-helmet": "^1.0.0",
"koa-jrpc2": "^0.1.1",
"koa-logger": "^1.3.0",
"koa-response-time": "^1.0.2",
"koa-route": "^2.4.2",
"koa-static-cache": "^3.1.2",
"normalize.css": "^3.0.3",
"purecss": "^0.6.0",
"react": "^0.14.3",
"react-dnd": "^2.0.2",
"react-dnd-html5-backend": "^2.0.0",
"react-dom": "^0.14.3",
"react-pure-render": "^1.0.2",
"react-redux": "^4.0.1",
"react-router": "^1.0.2",
"redux": "^3.0.5",
"redux-persist": "^1.4.10",
"redux-thunk": "^1.0.2"
},
"devDependencies": {
"autoprefixer-loader": "^3.0.0",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.1.0",
"babel-plugin-react-transform": "^2.0.0",
"chai": "^3.2.0",
"cross-env": "^5.0.1",
"css-loader": "^0.23.0",
"eslint": "^1.10.3",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.11.3",
"extract-text-webpack-plugin": "^1.0.0",
"file-loader": "^0.8.1",
"forever": "^0.15.3",
"html-webpack-plugin": "^1.1.0",
"istanbul": "^0.4.0",
"jsdom": "^7.2.1",
"koa-webpack-dev-middleware": "^1.0.1",
"koa-webpack-hot-middleware": "^1.0.1",
"mocha": "^2.3.2",
"react-addons-test-utils": "^0.14.0",
"react-dnd-test-backend": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"rimraf": "^2.4.4",
"s3": "^4.4.0",
"sinon": "^1.16.1",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-hot-middleware": "^2.6.0",
"webpack-sources": "^0.1.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --require ./config/mocha-environment.js './src/**/__tests__/*-tests.js'",
"test:coverage": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/mocha/bin/_mocha -- --require ./config/mocha-environment.js './src/**/__tests__/*-tests.js' --timeout 10000",
"test:watch": "./node_modules/.bin/mocha -w --require ./config/mocha-environment.js './src/**/__tests__/*-tests.js'",
"start": "./node_modules/.bin/babel-node ./src/server/main.js",
"start:production": "cross-env NODE_ENV=production forever start -c \"npm start\" ./",
"build": "./node_modules/.bin/webpack --config config/webpack.production.js",
"deploy": "npm run build && node ./config/aws-deploy.js && npm run clean",
"clean": "./node_modules/.bin/rimraf ./dist"
},
"repository": {
"type": "git",
"url": "https://www.github.com/frankwallis/redouble.git"
},
"engines": {
"node": ">= 4.1"
},
"private": true,
"author": "Frank Wallis",
"license": "MIT"
}