vega-frontend-monorepo/apps/token/project.json
Matthew Russell 7c2a84805e
fix(#441): withdraw fixes
* chore: make sure etherscan links open in new tab

* fix: format withdrawal amount correctly in table

* fix: switch to use next Link element so page state not lost

* fix: calc deposit max validation using ethereum storage at

* fix: remaining amount in deposits and refetch allowance

* fix: page background in dark mode

* chore: disable autocomplete for ethaddress

* fix: bump ag grid row size so underline is shown on FF

* fix: expect correctly formatted withdrawal amount

* fix: missing react keys in maps

* fix: complete button text in test

* fix: use sentry/react, fix webpack config path
2022-07-18 22:11:53 +01:00

81 lines
2.2 KiB
JSON

{
"root": "apps/token",
"sourceRoot": "apps/token/src",
"projectType": "application",
"targets": {
"build": {
"executor": "./tools/executors/webpack:build",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "production",
"options": {
"compiler": "babel",
"outputPath": "dist/apps/token",
"index": "apps/token/src/index.html",
"baseHref": "/",
"main": "apps/token/src/main.tsx",
"polyfills": "apps/token/src/polyfills.ts",
"tsConfig": "apps/token/tsconfig.app.json",
"assets": ["apps/token/src/favicon.ico", "apps/token/src/assets"],
"styles": ["apps/token/src/styles.css"],
"scripts": [],
"webpackConfig": "apps/token/webpack.config.js"
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "apps/token/src/environments/environment.ts",
"with": "apps/token/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false
}
}
},
"serve": {
"executor": "./tools/executors/webpack:serve",
"options": {
"port": 4210,
"buildTarget": "token:build",
"hmr": true
},
"configurations": {
"production": {
"buildTarget": "token:build:production",
"hmr": false
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/token/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/apps/token"],
"options": {
"jestConfig": "apps/token/jest.config.js",
"passWithNoTests": true
}
},
"build-netlify": {
"builder": "@nrwl/workspace:run-commands",
"options": {
"commands": [
"cp apps/token/netlify.toml netlify.toml",
"nx build token"
]
}
}
},
"tags": []
}