-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1016 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1016 Bytes
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
{
"name": "flight-insure",
"version": "1.0.0",
"description": "Web3 Flight Insurance dApp & Frontend",
"main": "src/app.js",
"scripts": {
"client-install": "cd client && npm install",
"server": "node src/index.js",
"devserver": "nodemon src/index.js",
"dapp": "cd client && npm run dev",
"dev": "concurrently \"npm run serve:server\" \"npm run serve:client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sangeetkar/FlightInsure"
},
"author": "sangeetkar",
"license": "unlincensed",
"homepage": "https://github.com/sangeetkar/FlightInsure#readme",
"dependencies": {
"body-parser": "^1.20.1",
"concurrently": "^7.5.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"ganache-cli": "^6.12.2"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.8.0",
"@truffle/hdwallet-provider": "^2.1.3",
"nodemon": "^2.0.20"
}
}