Skip to content

Commit

Permalink
Genesis Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shresthagrawal committed Jul 13, 2021
0 parents commit bc45229
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.DS_Store
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"trailingComma": "all",
"useTabs": false,
"printWidth": 80,
"tabWidth": 2,
"arrowParens": "avoid",
"semi": true,
"singleQuote": true,
"bracketSpacing": true
}
18 changes: 18 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "paraswap-dex-lib",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/paraswap/paraswap-dex-lib",
"author": "dev@paraswap.io",
"license": "MIT",
"private": false,
"devDependencies": {
"husky": "7.0.1",
"typescript": "4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}
21 changes: 21 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"lib": ["es2015"],
"module": "commonjs",
"noImplicitAny": true,
"outDir": "./dist/",
"preserveConstEnums": true,
"removeComments": true,
"strictNullChecks": true,
"sourceMap": true,
"target": "es2015",
"skipLibCheck": true,
"resolveJsonModule": true,
"allowJs": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"typeRoots": ["node_modules/@types"]
},
"include": ["src/**/*"]
}
13 changes: 13 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1


husky@7.0.1:
version "7.0.1"
resolved "https://registry.yarnpkg.com/husky/-/husky-7.0.1.tgz#579f4180b5da4520263e8713cc832942b48e1f1c"
integrity sha512-gceRaITVZ+cJH9sNHqx5tFwbzlLCVxtVZcusME8JYQ8Edy5mpGDOqD8QBCdMhpyo9a+JXddnujQ4rpY2Ff9SJA==

typescript@4.3.5:
version "4.3.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4"
integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==

0 comments on commit bc45229

Please sign in to comment.