forked from pagers-org/react-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.13 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
{
"name": "react-world",
"private": true,
"version": "0.0.0",
"description": "리액트로 구현하는 리얼 월드 프로젝트",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pagers-org/react-world.git"
},
"keywords": [
"real-world",
"react",
"pagers"
],
"author": {
"name": "w.h heo",
"email": "[email protected]",
"url": "https://github.com/her0707"
},
"devEngines": {
"node": "16.x || 18.x || 19.x || 20.x"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/her0707/react-world/issues"
},
"homepage": "https://github.com/her0707/react-world#readme",
"dependencies": {
"@astrojs/node": "^6.0.0",
"@astrojs/react": "^3.0.0",
"@astrojs/ts-plugin": "^1.1.3",
"@vanilla-extract/css": "^1.13.0",
"@vanilla-extract/css-utils": "^0.1.3",
"@vanilla-extract/recipes": "^0.5.0",
"astro": "^3.0.8",
"nanostores": "^0.9.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vanilla-extract/vite-plugin": "^3.9.0",
"concurrently": "^8.2.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"prettier-plugin-astro": "^0.12.0"
},
"scripts": {
"prepare": "husky install",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "eslint .",
"lint:prettier": "prettier --check . --plugin=prettier-plugin-astro",
"lint:prettier:fix": "prettier --write . --plugin=prettier-plugin-astro"
},
"lint-staged": {
"*.{ts,tsx,js,css,scss,md,json,astro}": "prettier --write"
}
}