This repository has been archived by the owner on Aug 4, 2023. It is now read-only.
forked from apibara/starknet-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
75
76
77
78
79
80
81
82
{
"name": "starknet-react",
"private": true,
"version": "0.0.0",
"license": "MIT",
"main": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"scripts": {
"build": "turbo run build --parallel",
"test": "turbo run test --parallel",
"lint": "turbo run lint --parallel",
"lint:fix": "turbo run lint:fix --parallel",
"typedoc": "turbo run typedoc --filter @starknet-react/*",
"web:dev": "turbo run dev --filter website",
"web:export": "turbo run export --filter website",
"release": "pnpm build && pnpm changeset publish",
"postinstall": "pnpm run prepare",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-syntax-flow": "^7.21.4",
"@babel/plugin-transform-react-jsx": "^7.21.5",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@types/react": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "8.17.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^7.0.1",
"eslint-config-react-hooks": "^1.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"starknet": "^4.22.0",
"turbo": "^1.9.9",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"tabWidth": 2,
"semi": false
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier",
"react-hooks"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
"varsIgnorePattern": "(^_)|(^tw$)",
"argsIgnorePattern": "^_"
}
]
}
},
"eslintIgnore": [
"node_modules",
"dist"
],
"lint-staged": {
"*.{js,ts,tsx}": "eslint --quiet --fix --cache"
}
}