generated from memoriaXII/create-web3-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "lens-cron",
"version": "0.0.0",
"private": true,
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sisyphusprotocol/lens-cron/issues"
},
"homepage": "https://github.com/sisyphusprotocol/lens-cron#readme",
"keywords": [
"react",
"typescript",
"smart-contracts",
"solidity",
"ethereum-dapp",
"hardhat",
"ethersjs",
"tailwindcss",
"turborepo",
"wagmi"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"prettier": "prettier --check \"**/*.{ts,tsx,md}\"",
"prettier:fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"storybook": "turbo run storybook",
"build-storybook": "turbo run build-storybook",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"autoprefixer": "^10.4.2",
"esbuild": "^0.14.10",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^13.1.0",
"msw": "^0.36.3",
"postcss": "^8.4.6",
"prettier": "latest",
"prettier-plugin-tailwindcss": "^0.1.7",
"tailwindcss": "^3.0.23",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16"
},
"packageManager": "[email protected]",
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/ui/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"daisyui": "^2.50.1"
}
}