-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.06 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
67
68
69
{
"name": "shopping-assistant-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start:dev": "concurrently \"npm run start:db\" \"npm run start:server\" \"npm run start\"",
"start": "webpack-dev-server --mode development --hot",
"start:server": "nodemon -w ./sa-api/ ./sa-api/server.js localhost 8080",
"start:db": "mongod --dbpath ./sa-db",
"build": "webpack --mode production --hide-modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alien1976/shopping-assistant-react.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alien1976/shopping-assistant-react/issues"
},
"homepage": "https://github.com/alien1976/shopping-assistant-react#readme",
"devDependencies": {
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.6",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^3.6.0",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"livereload": "^0.9.1",
"mini-css-extract-plugin": "^0.9.0",
"nodemon": "^2.0.5",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^5.2.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^7.0.5",
"typescript": "^3.9.7",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@date-io/date-fns": "^2.10.6",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@reduxjs/toolkit": "^1.4.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"easypz": "^1.1.12",
"express": "^4.17.1",
"indicative": "^7.4.4",
"jsonwebtoken": "^8.5.1",
"material-table": "^1.69.1",
"mongodb": "^3.6.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.1",
"socket.io": "^2.3.0"
}
}