-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "pixelkale",
"version": "1.0.0",
"description": "KaleCraft - The first immersive blockchain agriculture experience on Stellar",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"build": "webpack --mode production",
"test": "jest",
"farm": "node src/blockchain/farm-simulation.js",
"deploy": "node scripts/deploy-contracts.js",
"fund": "node scripts/fund-accounts.js"
},
"keywords": [
"stellar",
"blockchain",
"farming",
"game",
"kale",
"soroban",
"pixel-art",
"defi"
],
"author": "Klorenn",
"license": "MIT",
"dependencies": {
"stellar-sdk": "^11.0.0",
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1"
},
"devDependencies": {
"nodemon": "^3.0.1",
"jest": "^29.7.0",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Klorenn/PixelKale.git"
},
"bugs": {
"url": "https://github.com/Klorenn/PixelKale/issues"
},
"homepage": "https://github.com/Klorenn/PixelKale#readme"
}