forked from logto-io/js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "@logto/react-sample",
"version": "2.1.10",
"license": "MIT",
"private": true,
"scripts": {
"precommit": "lint-staged",
"start": "parcel src/index.html -p 3000",
"check": "tsc --noEmit",
"build": "pnpm check && rm -rf dist && parcel build src/index.html --no-autoinstall",
"lint": "eslint --ext .ts --ext .tsx src",
"stylelint": "stylelint \"src/**/*.scss\""
},
"dependencies": {
"@logto/react": "workspace:^",
"@tanstack/react-query": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.2.2"
},
"devDependencies": {
"@parcel/core": "^2.9.2",
"@parcel/transformer-sass": "^2.9.2",
"@silverhand/eslint-config": "^6.0.1",
"@silverhand/eslint-config-react": "^6.0.2",
"@silverhand/ts-config": "^6.0.0",
"@silverhand/ts-config-react": "^6.0.0",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@types/react-router-dom": "^5.3.3",
"buffer": "^6.0.3",
"eslint": "^8.57.0",
"lint-staged": "^15.0.0",
"parcel": "^2.9.2",
"postcss": "^8.4.31",
"postcss-modules": "^6.0.0",
"prettier": "^3.0.0",
"process": "^0.11.10",
"stylelint": "^15.0.0",
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": "@silverhand/react"
},
"stylelint": {
"extends": "@silverhand/eslint-config-react/.stylelintrc"
},
"prettier": "@silverhand/eslint-config/.prettierrc"
}