-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "redux-comments-section",
"version": "1.0.0",
"description": "",
"source": "src/index.html",
"scripts": {
"build": "parcel build src/index.html",
"predeploy": "rm -rf dist && parcel build src/index.html --no-source-maps --public-url ./",
"deploy": "gh-pages -d dist",
"start": "parcel",
"format": "prettier --write --no-semi \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\" --quiet"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@parcel/config-default": "^2.8.2",
"@types/node": "^18.11.17",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"buffer": "^5.7.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-typescript": "^0.14.0",
"parcel": "^2.8.0",
"parcel-reporter-static-files-copy": "^1.4.0",
"prettier": "^2.8.0",
"process": "^0.11.10",
"redux-devtools-extension": "^2.13.9"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"gh-pages": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"typescript": "^4.9.3"
}
}