-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.16 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.16 KB
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
70
71
72
73
{
"name": "NFTimeshares",
"version": "1.0.0",
"description": "Make a timeshare of an NFT",
"directories": {
"test": "test"
},
"scripts": {
"test": "hardhat test",
"build-client": "cd dapp && npm run build",
"client": "cd dapp && npm run start",
"server": "cd metadata-api-nodejs && npm run start",
"heroku-postbuild": "cd dapp && npm install && npm run build",
"server-prod": "cd metadata-api-nodejs && npm run start-prod",
"prod": "concurrently --kill-others-on-fail \"npm run build-client\" \"npm run server-prod\"",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"devserver": "cd metadata-api-nodejs && nodemon --exec babel-node index.js && cd .. && npm run client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nomiclabs/hardhat-hackathon-boilerplate.git"
},
"keywords": [
"hardhat",
"ethereum",
"react",
"express",
"timeshare"
],
"author": "Jacob Frantz",
"license": "MIT",
"bugs": {
"url": "https://github.com/jrfrantz/NFTimeshare/issues"
},
"homepage": "http://www.nftimeshares.fun",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"@openzeppelin/test-helpers": "^0.5.11",
"chai": "^4.2.0",
"concurrently": "^4.0.1",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.4.0",
"hardhat": "^2.0.4",
"husky": "^4.2.5"
},
"engines": {
"node": "^12.22.1"
},
"dependencies": {
"@openzeppelin/hardhat-defender": "^1.5.0",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"concurrently": "^4.0.1",
"ejs": "^2.6.1",
"ethers": "^5.4.0",
"express": "^4.16.4",
"express-sslify": "^1.2.0",
"install": "^0.13.0",
"npm": "^7.19.0",
"react": "^17.0.1",
"react-bootstrap": "^1.6.1",
"react-bootstrap-icons": "^1.5.0",
"react-dom": "^17.0.1",
"react-modal": "^3.14.3",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.2",
"smooth-scroll": "^16.1.3"
}
}