forked from apibara/starknet-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.2 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
83
{
"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.18.2",
"@babel/plugin-syntax-flow": "^7.17.12",
"@babel/plugin-transform-react-jsx": "^7.17.12",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/react": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"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.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"react": "^18.0",
"react-dom": "^18.0",
"starknet": "4.15.0",
"turbo": "^1.2.16",
"typescript": "^4.7.3"
},
"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"
},
"browserslist": "> 0.25%, not dead"
}