remix-project mirror
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.
 
 
 
 
 
remix-project/apps/quick-dapp/project.json

70 lines
1.9 KiB

{
"name": "quick-dapp",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/quick-dapp/src",
"projectType": "application",
"implicitDependencies": [],
"targets": {
"build": {
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "development",
"dependsOn": ["install"],
"options": {
"compiler": "babel",
"outputPath": "dist/apps/quick-dapp",
"index": "apps/quick-dapp/src/index.html",
"baseHref": "./",
"main": "apps/quick-dapp/src/main.tsx",
"polyfills": "apps/quick-dapp/src/polyfills.ts",
"tsConfig": "apps/quick-dapp/tsconfig.app.json",
"assets": ["apps/quick-dapp/src/profile.json", "apps/quick-dapp/src/assets/edit-dapp.png"],
"styles": ["apps/quick-dapp/src/index.css"],
"scripts": [],
"webpackConfig": "apps/quick-dapp/webpack.config.js"
},
"configurations": {
"development": {
},
"production": {
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/quick-dapp/**/*.ts"],
"eslintConfig": "apps/quick-dapp/.eslintrc"
}
},
"install": {
"executor": "nx:run-commands",
"options": {
"commands": [
"cd apps/quick-dapp && yarn"
],
"parallel": false
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "quick-dapp:build",
"hmr": true,
"baseHref": "/"
},
"configurations": {
"development": {
"buildTarget": "quick-dapp:build:development",
"port": 2025
},
"production": {
"buildTarget": "quick-dapp:build:production"
}
}
}
},
"tags": []
}