-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "todomvc-example",
"version": "0.0.0",
"private": true,
"description": "TodoMVC implemented with React/Redux and react-redux-chatgpt",
"authors": [
"Dan Abramov <[email protected]> (https://github.com/gaearon)",
"Andrew Clark <[email protected]> (https://github.com/acdlite)",
"Michael Smith <[email protected]> (https://spinda.net)"
],
"homepage": "https://github.com/spinda/react-redux-chatgpt/tree/main/todomvc-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",
"todomvc",
"demo"
],
"source": "src/index.html",
"scripts": {
"client:build": "parcel build",
"client:serve": "parcel serve",
"client:watch": "parcel watch"
},
"dependencies": {
"classnames": "^2.2.6",
"process": "^0.11.10",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.0",
"react-redux-chatgpt": "workspace:^0.1.0",
"redux": "^4.0.5",
"reselect": "^4.0.0",
"todomvc-app-css": "^2.3.0"
},
"devDependencies": {
"parcel": "^2.8.2"
}
}