-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
{
"name": "todolist-app",
"description": "How to CRUD in Node.js, React & Redux",
"version": "1.0.0",
"node-engine": "12.16.1",
"main": "index.js",
"private": true,
"author": {
"name": "Mir Janar Hossain",
"email": "[email protected]",
"url": "https://github.com/devjanar",
"website": "https://innovationghar.com"
},
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:server": "nodemon --watch build --exec \"node build/bundle.js\" ",
"dev:build-server": "webpack --config webpack.server.js --watch",
"dev:build-public": "webpack --config webpack.public.js --watch"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1"
},
"dependencies": {
"axios": "^0.19.2",
"bootstrap": "^4.5.0",
"compression": "^1.7.4",
"concurrently": "^5.2.0",
"css-loader": "^2.1.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"express-validator": "^6.6.0",
"html-to-draftjs": "^1.5.0",
"jquery": "^3.5.1",
"mongoose": "^5.9.26",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-quill": "^1.3.5",
"react-redux": "^7.2.1",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}