-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.15 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
{
"name": "flight-surety",
"version": "0.1.0",
"description": "Final project of Udacity Blockchain Developer Nanodegree program, flight delay insurance application based on smart contracts run on blockchain.",
"main": "index.js",
"scripts": {
"compile": "truffle compile",
"migrate": "truffle migrate",
"test": "truffle test --compile-none --debug ./test/flightSurety.js",
"dapp": "vite",
"dapp:build": "vite build",
"dapp:preview": "vite preview",
"dapp:prod": "npm run dapp:build && npm run dapp:preview",
"server": "nodemon ./server/server.js",
"server:prod": "node ./server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muratgozel/flight-surety.git"
},
"author": "Murat Gözel <murat@gozel.com.tr>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/muratgozel/flight-surety/issues"
},
"homepage": "https://github.com/muratgozel/flight-surety#readme",
"devDependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@truffle/hdwallet-provider": "^2.1.0",
"nodemon": "^2.0.20",
"truffle": "^5.6.3",
"vite": "^3.2.2",
"web3": "^1.8.0"
}
}