-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "counter-example",
"version": "0.0.0",
"private": true,
"description": "Basic counter demo for react-redux-chatgpt",
"author": "Michael Smith <[email protected]> (https://spinda.net)",
"license": "0BSD",
"homepage": "https://github.com/spinda/react-redux-chatgpt/tree/main/counter-example#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/spinda/react-redux-chatgpt.git"
},
"bugs": {
"url": "https://github.com/spinda/react-redux-chatgpt/issues"
},
"keywords": [
"react",
"redux",
"chatgpt",
"counter",
"demo"
],
"source": "index.html",
"scripts": {
"client:build": "parcel build",
"client:serve": "parcel serve",
"client:watch": "parcel watch",
"fmt:check": "prettier --check .",
"fmt:write": "prettier --write ."
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-redux-chatgpt": "workspace:^0.1.0"
},
"devDependencies": {
"parcel": "^2.8.2",
"prettier": "^2.8.1"
}
}