-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "todoer-client",
"productName": "todoer",
"version": "1.0.0",
"description": "A simple todo app.",
"source": "src/index.html",
"scripts": {
"clean": "rm -rf ./dist ./.parcel-cache",
"start": "parcel --open --port 3000",
"build": "parcel build && node bin/fixDistHtml.js"
},
"keywords": [],
"author": {
"name": "Henry Aguila",
"url": "https://henryaguila.com"
},
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.7.3",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"parcel": "^2.8.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-tooltip": "^5.3.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@emotion/babel-plugin": "^11.10.5",
"@emotion/eslint-plugin": "^11.10.0",
"@types/react": "^18.0.26",
"@types/react-beautiful-dnd": "^13.1.3",
"@types/react-dom": "^18.0.10",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"process": "^0.11.10",
"typescript": "^4.9.4"
}
}