forked from basir/amazona
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 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
43
44
45
{
"name": "pagine_azzurre",
"type": "module",
"version": "1.0.0",
"description": "Ecommerce website like amazon",
"main": "index.js",
"scripts": {
"build": "cd frontend && npm install && npm run build",
"start": "nodemon --watch backend --exec node --experimental-modules backend/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basir/amazona.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/basir/amazona/issues"
},
"homepage": "https://github.com/basir/amazona#readme",
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"@truffle/hdwallet-provider": "^1.5.0",
"aws-sdk": "^2.892.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.7",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"uuid": "^3.4.0",
"web3": "^1.5.2"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"nodemon": "^2.0.4"
},
"engines": {
"node": "12.4.0",
"npm": "6.9.0"
}
}