summaryrefslogtreecommitdiffstats
path: root/package.json
blob: dc6baf4fc041952b636db862f3575817586fe1d5 (plain) (blame)
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
{
  "name": "website-creator",
  "version": "1.0.0",
  "description": "Build your website in few minutes",
  "main": "./client/src/admin/jsx/App.jsx",
  "scripts": {
    "dev": "npm-run-all --parallel watch:server watch:client",
    "start": "node app.js",
    "watch:client": "webpack --config webpack.config.js --watch",
    "watch:server": "nodemon app.js"
  },
  "keywords": [],
  "author": "PRUSS",
  "license": "ISC",
  "dependencies": {
    "bcryptjs": "^2.4.3",
    "body-parser": "^1.19.0",
    "cookie-parser": "^1.4.5",
    "dotenv-safe": "^8.2.0",
    "express": "^4.16.4",
    "jsonwebtoken": "^8.5.1",
    "mongoose": "^5.10.13",
    "npm-run-all": "^4.1.5",
    "rand-token": "^1.0.1",
    "request": "^2.88.0"
  },
  "devDependencies": {
    "babel-core": "^6.26.3",
    "babel-loader": "^7.1.5",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-react": "^6.24.1",
    "babel-preset-stage-2": "^6.22.0",
    "copy-webpack-plugin": "^6.0.3",
    "css-loader": "^1.0.1",
    "file-loader": "^3.0.1",
    "node-sass": "^4.9.3",
    "nodemon": "^1.19.0",
    "react": "^16.3.3",
    "react-dom": "^16.3.3",
    "sass-loader": "^6.0.7",
    "style-loader": "^0.22.1",
    "webpack": "^4.16.5",
    "webpack-cli": "^3.1.0"
  }
}