-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.35 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
{
"name": "isomorphic-chat",
"version": "2.0.1",
"description": "Isomorphic chat built with React",
"main": "src/server/index.js",
"repository": "https://github.com/ovidiubute/isomorphic-chat",
"author": "Ovidiu Bute <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.2.2",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"concurrently": "^3.4.0",
"css-loader": "^0.28.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^1.6.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"jest": "^20.0.3",
"lint-staged": "^3.4.0",
"nodemon": "^1.11.0",
"prettier": "^1.1.0",
"style-loader": "^0.18.0",
"webpack": "^2.4.1"
},
"dependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"koa": "^2.2.0",
"koa-ejs": "^4.0.0",
"koa-socket": "^4.4.0",
"koa-static": "^3.0.0",
"mongodb": "^2.2.26",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"redis": "^2.7.1",
"regenerator-runtime": "^0.10.5",
"socket.io-client": "^1.7.3"
},
"scripts": {
"client-build": "webpack --bail --config src/client/webpack/webpack.config.dev.babel.js",
"client-build-production": "webpack --bail --config src/client/webpack/webpack.config.prod.babel.js",
"client-build-watch": "webpack --config src/client/webpack/webpack.config.dev.babel.js --watch",
"lint": "./node_modules/.bin/eslint --ext js,jsx src/*",
"precommit": "lint-staged",
"server-start": "node src/server/",
"server-start-production": "NODE_ENV=production yarn client-build-production && node src/server/",
"server-start-watch": "nodemon -L --watch src src/server/",
"start": "./node_modules/.bin/concurrently --kill-others \"yarn client-build-watch\" \"yarn server-start-watch\"",
"test": "jest"
},
"lint-staged": {
"*.{js,jsx}": [
"./node_modules/.bin/eslint --fix",
"git add"
]
}
}