-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.22 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
{
"name": "react-reversi",
"version": "1.0.0",
"description": "Example React, Redux, Socket.IO, Redis",
"scripts": {
"prestart": "npm run remove-dist",
"start": "parallelshell \"npm run test:watch\" \"npm run open\"",
"open": "node tools/server.js",
"lint": "eslint src",
"lint:watch": "watch 'npm run lint' src",
"clean-dist": "npm run remove-dist && npm run create-dist",
"remove-dist": "node_modules/.bin/rimraf ./dist",
"create-dist": "mkdir dist && cd dist && mkdir js && mkdir styles",
"build:html": "node tools/buildHtml.js",
"build:sass": "node-sass --quiet --output dist/styles src/styles/styles.scss --source-map true --output-style compressed",
"prebuild": "npm run clean-dist && npm run build:html && npm run build:sass",
"build": "npm run test && npm run build:verbose -- -s",
"build:verbose": "node tools/build.js",
"test": "cross-env NODE_ENV=test mocha --reporter progress --compilers js:babel/register --recursive \"./src/**/*.spec.js\"",
"test:watch": "npm run --watch"
},
"author": "Norm Cradall",
"license": "MIT",
"dependencies": {
"fs": "0.0.2",
"ioredis": "1.14.0",
"json-loader": "0.5.4",
"react": "0.14.0",
"react-dom": "0.14.0",
"react-redux": "4.0.0",
"redis": "2.4.2",
"redux": "3.0.4",
"redux-devtools": "3.0.1",
"socket.io": "1.4.4"
},
"devDependencies": {
"babel": "5.8.23",
"babel-eslint": "4.1.6",
"babel-loader": "5.1.4",
"babel-plugin-react-display-name": "2.0.0",
"babel-plugin-react-transform": "1.1.1",
"browser-sync": "2.10.0",
"chai": "3.3.0",
"cheerio": "0.19.0",
"colors": "1.1.2",
"cross-env": "1.0.6",
"css-loader": "0.23.0",
"eslint": "1.10.3",
"eslint-loader": "1.1.1",
"eslint-plugin-react": "3.10.0",
"file-loader": "0.8.5",
"mocha": "2.3.3",
"node-sass": "3.4.2",
"parallelshell": "2.0.0",
"react-transform-catch-errors": "1.0.0",
"react-transform-hmr": "1.0.1",
"redbox-react": "1.2.0",
"rimraf": "2.5.0",
"sass-loader": "3.1.2",
"style-loader": "0.12.3",
"watch": "0.16.0",
"webpack": "1.12.9",
"webpack-dev-middleware": "1.4.0",
"webpack-hot-middleware": "2.6.0",
"yargs": "3.31.0"
}
}