generated from jpedroschmitz/typescript-nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.85 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
{
"name": "multisig-faucet-cardano-dapp",
"description": "A multisig faucet for safe distribution of Cardano native assets",
"version": "1.0.0",
"private": true,
"author": "ADAO",
"license": "MIT",
"keywords": [
"nextjs",
"cardano",
"faucet",
"dapp"
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"commit": "cz"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"@emurgo/cardano-serialization-lib-browser": "9.1.4",
"@emurgo/cardano-serialization-lib-nodejs": "9.1.4",
"@emurgo/cip14-js": "3.0.1",
"@headlessui/react": "1.4.3",
"@heroicons/react": "1.0.5",
"buffer": "6.0.3",
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@types/node": "16.11.21",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"autoprefixer": "10.4.2",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"lint-staged": "12.1.7",
"postcss": "8.4.5",
"prettier": "2.5.1",
"tailwindcss": "3.0.15",
"typescript": "4.5.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}