nova-ui/package.json
Tornado Contrib 355e1e88ce
Build worker by additional webpack config and transpile services by hand
Either ts-loader or babel-loader to bundle workers didn't work properly so I transpiled them by hand
2024-05-08 20:13:37 +00:00

104 lines
3.0 KiB
JSON

{
"name": "tornado-new",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt",
"build": "nuxt build && yarn worker:compile",
"start": "nuxt start",
"lint": "eslint --ext .js,.ts",
"lint:fix": "eslint --ext .js,.ts --quiet --fix",
"compile": "typechain --target ethers-v5 --out-dir ./_contracts './abi/*.json'",
"copyFile": "node --loader ts-node/esm copyFile.ts",
"generate": "yarn worker:compile && nuxt generate && yarn copyFile dist/404.html dist/ipfs-404.html",
"prepare": "husky install",
"ipfs:upload": "node --loader ts-node/esm ipfsUpload.ts",
"worker:compile": "webpack"
},
"dependencies": {
"@apollo/client": "^3.4.16",
"@babel/cli": "^7.15.7",
"@flashbots/ethers-provider-bundle": "^0.3.2",
"@mycrypto/gas-estimation": "^1.1.0",
"@tornado/circomlib": "0.4.1",
"@tornado/fixed-merkle-tree": "0.5.1",
"@tornado/gas-price-oracle": "^0.5.3",
"@tornado/snarkjs": "0.4.15",
"ajv": "^8.6.2",
"axios": "^0.27.2",
"core-js": "^3.9.1",
"crypto-js": "^4.1.1",
"effector": "^21.8.12",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.1.0",
"ethers": "^5.3.1",
"ffjavascript": "^0.2.37",
"file-saver": "^2.0.5",
"find-replacement-tx": "^1.2.1",
"graphql": "^15.6.1",
"idb": "6.0.0",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"luxon": "^2.0.1",
"nuxt": "^2.15.7",
"sanitize.css": "^12.0.1",
"v-tooltip": "^2.1.3",
"vue-clickaway": "^2.2.2",
"vue-js-modal": "^2.0.0-rc.6",
"vue-notification": "^1.3.20",
"vuex-persistedstate": "^4.0.0-beta.3",
"web3-eth-abi": "^1.6.1",
"web3-utils": "^1.3.6"
},
"devDependencies": {
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/style-resources": "^1.2.0",
"@typechain/ethers-v5": "^7.0.1",
"@types/axios": "^0.14.0",
"@types/file-saver": "^2.0.3",
"@types/lodash": "^4.14.170",
"@types/node": "^16.10.9",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"arraybuffer-loader": "^1.0.8",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.16.0",
"form-data": "^4.0.0",
"husky": "^6.0.0",
"lint-staged": "10.2.11",
"prettier": "^2.3.1",
"sass": "1.32",
"sass-loader": "10",
"ts-loader": "8.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typechain": "^5.1.0",
"typescript": "^4.3.4",
"vue-eslint-parser": "^7.6.0",
"webpack-cli": "^4.10.0",
"worker-loader": "^3.0.8"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "export CI=true && yarn build"
}
},
"lint-staged": {
"**/*.ts": [
"yarn lint:fix",
"yarn lint"
]
}
}