-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.25 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
{
"name": "react-socket.io-chat-app",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/martins-giberts/react-chat-app",
"author": "Martins Giberts <martins.giberts@gmail.com>",
"license": "GPL-3.0",
"dependencies": {
"connect-session-sequelize": "^4.1.0",
"express": "^4.15.2",
"express-session": "^1.15.2",
"mobx": "^3.1.7",
"mobx-react": "^4.1.5",
"mysql": "^2.13.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router-dom": "^4.0.0",
"sequelize": "^3.30.4",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.27.3",
"eslint": "^3.18.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"path": "^0.12.7",
"postcss-loader": "^1.3.3",
"precss": "^1.4.0",
"react-hot-loader": "3.0.0-beta.6",
"sequelize-cli": "^2.7.0",
"style-loader": "^0.16.0",
"uglify-js": "^2.8.0",
"uglifyjs-webpack-plugin": "^0.3.1",
"webpack": "^2.3.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1",
"webpack-merge": "^4.1.0",
"webpack2-validator": "^1.0.0"
},
"scripts": {
"eslint": "./node_modules/eslint/bin/eslint.js ./app",
"validate-webpack:dev": "./node_modules/webpack2-validator/dist/bin/webpack-validator.js webpack.config.js --env=dev",
"build:dev": "webpack --env=dev --progress --profile --colors",
"build:prod": "webpack --env=prod --progress --profile --colors",
"start": "yarn build:dev && NODE_ENV=dev node --preserve-symlinks server/server.js",
"start:prod": "yarn build:prod && NODE_ENV=prod node --preserve-symlinks server/server.js",
"start:db": "mysqld",
"sequelize": "sequelize"
}
}