-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
46
{
"private": true,
"name": "elka-simple-shop",
"version": "0.0.1",
"description": "A simple e-commerce app, built with nextjs, and tailwind",
"main": "src/index.tsx",
"scripts": {
"dev": "next dev",
"build": "next build",
"prestart": "npm run build",
"start": "next start",
"test:unit": "jest --watch --coverage",
"test:clear": "jest --clearCache"
},
"repository": {
"type": "git",
"url": "https://github.com/justgeek/elka-simple-shop.git"
},
"author": "Mohamed Taher",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/justgeek/elka-simple-shop/issues"
},
"homepage": "https://github.com/justgeek/elka-simple-shop#readme",
"dependencies": {
"@heroicons/react": "^1.0.6",
"next": "^11.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-paginate": "^8.1.3",
"react-toastify": "^9.0.6"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "14.2.0",
"@types/react": "^17.0.15",
"autoprefixer": "^10.3.1",
"babel-jest": "^28.1.3",
"jest": "^28.1.0",
"jest-environment-jsdom": "28.1.0",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5"
}
}