-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "react-chat-app",
"version": "0.0.0",
"description": "a simple chat app",
"main": "index.js",
"scripts": {
"prebuild": "rimraf static",
"start": "cross-env NODE_ENV=production node index",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/isejaa/react-chat-app.git"
},
"author": "Humberto Barrientos González",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"flow-bin": "^0.58.0",
"html-webpack-plugin": "^2.30.1",
"nodemon": "^1.12.1",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"webpack": "^3.7.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.9.1",
"webpack-hot-middleware": "^2.20.0"
},
"dependencies": {
"axios": "^0.17.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"knex": "^0.13.0",
"moment": "^2.19.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-materialize": "^1.0.16",
"socket.io": "^2.0.4",
"sqlite3": "^3.1.13"
},
"quokka": {
"babel": true
}
}