-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 999 Bytes
/
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
{
"name": "stacks-bingo",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write '**/*.{json,md,js,ts,jsx,tsx,yml,css}'",
"prepare": "husky install"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{json,md,js,ts,jsx,tsx,yml,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@stacks/auth": "3.3.0",
"@stacks/connect": "6.4.1",
"@stacks/connect-react": "13.0.2",
"@stacks/network": "3.3.0",
"@stacks/transactions": "3.3.0",
"@stitches/react": "1.2.5",
"nes.css": "2.3.0",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/react": "17.0.30",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"husky": "7.0.2",
"lint-staged": "11.2.3",
"prettier": "2.4.1",
"typescript": "4.4.4"
}
}