mango-token-sale/package.json

74 lines
2.0 KiB
JSON
Raw Normal View History

2021-04-24 13:47:02 -07:00
{
"name": "with-typescript-eslint-jest",
"author": "@erikdstock",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
2021-04-27 02:14:37 -07:00
"prepare": "husky install",
"tc": "yarn type-check --watch",
2021-04-24 13:47:02 -07:00
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js --ext jsx",
2021-04-24 13:47:02 -07:00
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"lint-staged": {
"*.@(ts|tsx|js|jsx)": [
2021-04-24 13:47:02 -07:00
"yarn format"
]
},
"dependencies": {
2021-04-25 08:03:30 -07:00
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@headlessui/react": "^1.0.0",
"@heroicons/react": "^1.0.1",
"@project-serum/anchor": "^0.10.0",
2021-04-25 08:03:30 -07:00
"@project-serum/sol-wallet-adapter": "^0.2.0",
"@solana/spl-token": "^0.1.3",
"@solana/web3.js": "^1.5.0",
"immer": "^9.0.1",
"moment": "^2.29.1",
2021-08-04 10:09:32 -07:00
"moment-timezone": "^0.5.33",
2021-04-24 13:47:02 -07:00
"next": "latest",
2021-04-25 08:03:30 -07:00
"next-themes": "^0.0.14",
"rc-slider": "^9.7.2",
2021-04-24 13:47:02 -07:00
"react": "^17.0.1",
2021-07-06 06:25:55 -07:00
"react-countdown": "^2.3.2",
2021-04-25 08:03:30 -07:00
"react-dom": "^17.0.1",
"zustand": "^3.4.1"
2021-04-24 13:47:02 -07:00
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^11.2.0",
2021-04-24 13:47:02 -07:00
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.19.0",
2021-04-25 08:03:30 -07:00
"eslint-plugin-react-hooks": "^4.2.0",
2021-04-27 02:14:37 -07:00
"husky": "^6.0.0",
2021-04-24 13:47:02 -07:00
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.0.10",
2021-04-25 09:13:28 -07:00
"postcss": "^8.2.12",
"postcss-preset-env": "^6.7.0",
2021-04-24 13:47:02 -07:00
"prettier": "^2.0.2",
2021-04-25 08:03:30 -07:00
"tailwindcss": "^2.1.2",
"twin.macro": "^2.4.0",
2021-04-24 13:47:02 -07:00
"typescript": "^4.1.3"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
2021-04-24 13:47:02 -07:00
}
}