-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.12 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
{
"name": "rexar",
"version": "1.0.0",
"description": "Rexar application",
"main": "./dist/index.js",
"scripts": {
"watch": "npm-run-all --parallel watch:client watch:server",
"watch:client": "webpack --watch",
"watch:server": "npx nodemon ./dist/app.js"
},
"author": "Afgan Khalilov",
"license": "GPLv2",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"babel-core": "^6.26.3",
"body-parser": "^1.18.3",
"config": "^3.0.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"lodash": "^4.17.14",
"mongoose": "^5.5.11",
"npm-run-all": "^4.1.5",
"react": "^16.7.0",
"react-addons-update": "^15.6.2",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"nodemon": "^1.18.6",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-node-externals": "^1.7.2",
"webpack-notifier": "^1.7.0"
}
}