-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 3.05 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
{
"name": "chat-application",
"version": "0.0.0",
"description": "React Redux boilerplate",
"main": "index.js",
"scripts": {
"prestart": "babel-node tools/startMessage.js",
"start": "npm-run-all --parallel start:dev lint:watch test:watch",
"start:dev": "node_modules/.bin/babel-node tools/devServer.js",
"test": "mocha --compilers js:babel-core/register --require ./tools/testSetup.js --recursive 'src/**/*.spec.js'",
"test:watch": "npm run test -- --watch",
"lint": "node_modules/.bin/esw webpack.config.* src tools test",
"lint:watch": "npm run lint -- --watch",
"coverage": "babel-node tools/coverageMessage.js && ./node_modules/istanbul/lib/cli.js cover _mocha -- --compilers js:babel-core/register --require ./tools/testSetup.js --report html tests/**/*.spec.js",
"coveralls": "babel-node ./node_modules/istanbul/lib/cli.js cover _mocha -- --compilers js:babel-core/register --require ./tools/testSetup.js --report lcovonly tests/**/*.spec.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"clean-dist": "rm -rf dist && mkdir -p dist",
"prebuild": "npm run clean-dist && babel-node tools/buildMessage.js && cp src/index.html dist/index.html",
"build": "webpack -p --define process.env.NODE_ENV='\"production\"' --progress --colors",
"start:dist": "NODE_ENV=production babel-node tools/prodServer.js",
"build:start": "build && start:prod"
},
"repository": {
"type": "git"
},
"author": "Komaldeep",
"license": "ISC",
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.21.0",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-preset-stage-1": "6.22.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"css-loader": "^0.28.3",
"enzyme": "2.7.1",
"eslint": "3.15.0 ",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.9.0",
"eslint-watch": "2.1.14",
"istanbul": "1.0.0-alpha.2",
"jsdom": "8.1.0",
"mocha": "3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"npm-run-all": "^3.1.1",
"react-addons-test-utils": "15.4.2",
"react-hot-loader": "^3.0.0-beta.7",
"redux-immutable-state-invariant": "1.2.4",
"redux-logger": "2.8.1",
"sinon": "1.17.7",
"style-loader": "^0.13.1",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0",
"webpack-hot-middleware": "2.12.1"
},
"dependencies": {
"body-parser": "^1.17.2",
"classnames": "^2.2.5",
"colors": "^1.1.2",
"expect": "1.20.2",
"express": "^4.15.3",
"immutable": "3.8.1",
"lodash": "4.17.4",
"material-ui": "^0.18.1",
"open": "0.0.5",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-hot-loader": "^3.0.0-beta.2",
"react-modal": "^1.7.7",
"react-redux": "5.0.2",
"react-router": "3.0.2",
"react-tap-event-plugin": "^2.0.1",
"react-web-notification": "^0.2.4",
"redux": "3.6.0",
"redux-thunk": "2.2.0",
"socket.io": "^2.0.1"
}
}