You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
59 lines
1.9 KiB
2 years ago
|
{
|
||
2 years ago
|
"name": "walletconnect",
|
||
2 years ago
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||
2 years ago
|
"sourceRoot": "apps/walletconnect/src",
|
||
2 years ago
|
"projectType": "application",
|
||
|
"implicitDependencies": [],
|
||
|
"targets": {
|
||
|
"build": {
|
||
|
"executor": "@nrwl/webpack:webpack",
|
||
|
"outputs": ["{options.outputPath}"],
|
||
|
"defaultConfiguration": "development",
|
||
|
"options": {
|
||
|
"compiler": "babel",
|
||
2 years ago
|
"outputPath": "dist/apps/walletconnect",
|
||
|
"index": "apps/walletconnect/src/index.html",
|
||
2 years ago
|
"baseHref": "./",
|
||
2 years ago
|
"main": "apps/walletconnect/src/main.tsx",
|
||
|
"polyfills": "apps/walletconnect/src/polyfills.ts",
|
||
|
"tsConfig": "apps/walletconnect/tsconfig.app.json",
|
||
|
"assets": ["apps/walletconnect/src/profile.json"],
|
||
|
"styles": ["apps/walletconnect/src/css/app.css", "apps/walletconnect/src/css/index.css"],
|
||
2 years ago
|
"scripts": [],
|
||
2 years ago
|
"webpackConfig": "apps/walletconnect/webpack.config.js"
|
||
2 years ago
|
},
|
||
|
"configurations": {
|
||
|
"development": {
|
||
|
},
|
||
|
"production": {
|
||
|
"fileReplacements": [
|
||
|
{
|
||
2 years ago
|
"replace": "apps/walletconnect/src/environments/environment.ts",
|
||
|
"with": "apps/walletconnect/src/environments/environment.prod.ts"
|
||
2 years ago
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"serve": {
|
||
|
"executor": "@nrwl/webpack:dev-server",
|
||
|
"defaultConfiguration": "development",
|
||
|
"options": {
|
||
2 years ago
|
"buildTarget": "walletconnect:build",
|
||
2 years ago
|
"hmr": true,
|
||
|
"baseHref": "/"
|
||
2 years ago
|
},
|
||
|
"configurations": {
|
||
|
"development": {
|
||
2 years ago
|
"buildTarget": "walletconnect:build:development",
|
||
2 years ago
|
"port": 2023
|
||
2 years ago
|
},
|
||
|
"production": {
|
||
2 years ago
|
"buildTarget": "walletconnect:build:production"
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"tags": []
|
||
|
}
|
||
|
|