-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.29 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
{
"name": "amazona",
"type": "module",
"version": "0.1.0",
"private": true,
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.0",
"multer": "^1.4.2"
},
"scripts": {
"build": "cd frontend && npm install && npm run build",
"start": "nodemon --watch backend --exec node --experimental-modules backend/server.js"
},
"keywords": [
"e-commerce",
"webapp",
"js",
"react",
"fullstack",
"redux"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kh-khalil/e-commerce-app.git"
},
"author": "Khaled Khalil",
"license": "ISC",
"bugs": {
"url": "https://github.com/kh-khalil/e-commerce-app/issues"
},
"homepage": "https://github.com/kh-khalil/e-commerce-app#readme",
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"nodemon": "^2.0.7",
"@types/react-redux": "^7.1.16"
},
"engines": {"node": "12.4.0", "npm": "6.9.0"}
}