-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "grocery-store",
"version": "0.1.0",
"description": "Example proyect with Nextjs and Twind",
"author": "jorbuedo",
"license": "MIT",
"repository": "jorbuedo/next-groceries",
"private": true,
"scripts": {
"dev": "next dev & json-server --watch db.json --port 3001",
"build": "next build",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@twind/line-clamp": "^0.1.1",
"@twind/next": "^1.0.7",
"immer": "^9.0.2",
"jotai": "^0.16.5",
"nanoid": "^3.1.23",
"next": "10.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.16.0",
"twind": "^0.16.14"
},
"devDependencies": {
"@testing-library/dom": "^7.31.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^5.1.2",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"json-server": "^0.16.3",
"prettier": "^2.3.0",
"prettier-eslint": "^12.0.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}