metaplex/js/package.json

81 lines
2.1 KiB
JSON
Raw Normal View History

2021-06-02 07:35:28 -07:00
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"keywords": [],
"license": "Apache-2.0",
"engines": {
2021-09-29 08:05:09 -07:00
"node": ">=14.17"
2021-06-02 07:35:28 -07:00
},
"scripts": {
"bootstrap": "lerna link && lerna bootstrap",
"build": "lerna run build",
2021-08-04 12:41:37 -07:00
"start": "cross-env CI=true lerna run start --scope @oyster/common --stream --parallel --scope web",
2021-09-06 03:34:03 -07:00
"lint": "prettier -c 'packages/*/{src,test}/**/*.ts' && npm run lint:eslint",
2021-08-30 08:32:45 -07:00
"lint:eslint": "eslint 'packages/*/{src,test}/**/*.ts'",
2021-09-06 03:34:03 -07:00
"lint:fix": "prettier --write 'packages/*/{src,test}/**/*.{ts,tsx}' && eslint --fix 'packages/*/{src,test}/**/*.ts'",
2021-08-16 14:26:39 -07:00
"format:fix": "lerna run format:fix",
2021-06-02 07:35:28 -07:00
"deploy": "run-s deploy:docs build deploy:apps && gh-pages -d docs",
"deploy:docs": "lerna run docs",
"deploy:apps": "lerna run deploy:app",
"test": "lerna run test --concurrency 1 --stream"
},
"lint-staged": {
"packages/*/{src,test}/**/*.ts": [
"prettier --write",
"eslint --cache --fix --max-warnings=0"
2021-06-02 07:35:28 -07:00
]
},
"resolutions": {
"@types/react": "^17.0.16"
},
2021-06-02 07:35:28 -07:00
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"arrowParens": "avoid",
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
2021-08-04 12:41:37 -07:00
"cross-env": "^7.0.3",
"next": "^11.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
2021-06-02 07:35:28 -07:00
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/animejs": "^3.1.3",
"@types/jest": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint-plugin-react": "^7.25.1",
The Fair Launch Protocol (#367) * Fair launch work * Add cargo * Update cargo to latest * Latest candy machine types * Fair launch update to anchor 14 and finish fleshing out commands * Working on fair launch * Finish initializing fair launch. * Lottery endpoints * Knee deep in more actions * some monster commit here, almost done wiht initial draft * Code complete fair launch. first draft. * More work * COmmit to reproduce * Hell yeah i can make these and show them * well, a lot of stuff. * Holy medians batman * Adjust ticket * more commands, more love, more life * Mooore stuff * This sh*t is gettin hot * More junk, im losing it. * Ninja'd that sh*t * well ill be damned, some of it is working * Think punching is working. Time for sleep. * Anti rug commit - before testing. * feat: init commit for website * Got my money back first time end to end b*tches * things beginning to work * Oh yeah, rug pull seems to be working... * Mostly working now * Some more fixes * Moref ixes * feat: basic page * feat: purchaseTicket * feat: fair launch UI * Still figuring it out * Still investigating why newly made accounts have delegates * pushing * Some fixes to the adjust ticket * Bid adjustment works in UI * feat: layout * trasury numbers * Hook up your bid * feat: style * wip on fair launch new fields * feat: home * Come limited punching support * More display logic for fair launch * feat: style * feat: countdown * Bid adjustment * Fix for when median is not divisible by tick * feat: home * Working on recoding so that we can use spl tokens * feat: style * Midway stopping point...nothing is working. * more and less. * Added confetti and merged updates * End to end working and fix minting for spl in candy machine * New fair launch * New fair launch * Better loading and stuff * feat: style changes * fix: warnings * candy time * Anti rug screens * better verbiage * feat: hide withdraw button * Refund working and set id * Good to go for prod Co-authored-by: bartosz-lipinski <264380+bartosz-lipinski@users.noreply.github.com>
2021-09-21 11:33:22 -07:00
"eslint": "^7.11.0",
2021-06-02 07:35:28 -07:00
"eslint-config-prettier": "^6.15.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
The Fair Launch Protocol (#367) * Fair launch work * Add cargo * Update cargo to latest * Latest candy machine types * Fair launch update to anchor 14 and finish fleshing out commands * Working on fair launch * Finish initializing fair launch. * Lottery endpoints * Knee deep in more actions * some monster commit here, almost done wiht initial draft * Code complete fair launch. first draft. * More work * COmmit to reproduce * Hell yeah i can make these and show them * well, a lot of stuff. * Holy medians batman * Adjust ticket * more commands, more love, more life * Mooore stuff * This sh*t is gettin hot * More junk, im losing it. * Ninja'd that sh*t * well ill be damned, some of it is working * Think punching is working. Time for sleep. * Anti rug commit - before testing. * feat: init commit for website * Got my money back first time end to end b*tches * things beginning to work * Oh yeah, rug pull seems to be working... * Mostly working now * Some more fixes * Moref ixes * feat: basic page * feat: purchaseTicket * feat: fair launch UI * Still figuring it out * Still investigating why newly made accounts have delegates * pushing * Some fixes to the adjust ticket * Bid adjustment works in UI * feat: layout * trasury numbers * Hook up your bid * feat: style * wip on fair launch new fields * feat: home * Come limited punching support * More display logic for fair launch * feat: style * feat: countdown * Bid adjustment * Fix for when median is not divisible by tick * feat: home * Working on recoding so that we can use spl tokens * feat: style * Midway stopping point...nothing is working. * more and less. * Added confetti and merged updates * End to end working and fix minting for spl in candy machine * New fair launch * New fair launch * Better loading and stuff * feat: style changes * fix: warnings * candy time * Anti rug screens * better verbiage * feat: hide withdraw button * Refund working and set id * Good to go for prod Co-authored-by: bartosz-lipinski <264380+bartosz-lipinski@users.noreply.github.com>
2021-09-21 11:33:22 -07:00
"jest": "26.6.0",
2021-06-02 07:35:28 -07:00
"jest-config": "24.9.0",
"lerna": "3.22.1",
"lint-staged": "^10.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.3"
}
}