-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"$schema": "https://json.schemastore.org/package",
"name": "react-parcel-todos",
"version": "1.0.0",
"description": "react-parcel-todos with parcel bundler and react-js by Junproger",
"keywords": [
"parcel",
"react-parcel",
"typescript",
"react-js",
"react-hooks",
"react-todos",
"todo-app",
"todos"
],
"homepage": "https://github.com/junproger/react-parcel-todos",
"repository": "git+https://github.com/junproger/react-parcel-todos.git",
"author": "Junproger <[email protected]> (https://github.com/junproger)",
"private": true,
"license": "ISC",
"source": "./source/index.html",
"targets": {
"default": {
"distDir": "./build"
}
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"typing": "tsc --noEmit",
"checkup": "prettier --check source/",
"format": "prettier --write source/",
"start": "parcel serve --open",
"build": "parcel build --public-url ./",
"watch": "parcel watch ./source/index.html",
"linter": "eslint \"./source/**/*.{js,jsx,ts,tsx}\"",
"linter:fix": "eslint \"./source/**/*.{js,jsx,ts,tsx}\" --fix"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "^2.9.3",
"prettier": "^3.0.0",
"process": "^0.11.10",
"typescript": "^5.1.6"
}
}