examples/fluence-js-examples/hello-world/package.json

32 lines
941 B
JSON
Raw Normal View History

{
"name": "hello-world",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "npm run compile-aqua",
"prebuild": "npm run compile-aqua",
"start": "node -r ts-node/register src/index.ts",
"build": "tsc",
"test": "jest",
"compile-aqua": "aqua --import . -i ./aqua/ -o ./src/_aqua",
"watch-aqua": "chokidar \"**/*.aqua\" -c \"npm run compile-aqua\""
},
"author": "",
"license": "ISC",
"devDependencies": {
2022-04-27 12:23:57 +00:00
"@fluencelabs/aqua": "^0.7.2-303",
"@fluencelabs/aqua-lib": "^0.5.1",
"chokidar-cli": "^3.0.0",
2022-04-25 19:30:06 +00:00
"ts-node": "^10.6.0",
"typescript": "^4.6.3",
"@types/jest": "^27.0.3",
"jest": "^27.4.0",
"ts-jest": "^27.0.7"
},
"dependencies": {
2022-04-27 12:23:57 +00:00
"@fluencelabs/fluence": "^0.23.0",
"@fluencelabs/fluence-network-environment": "^1.0.13"
}
}