-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
72 lines (72 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ikea-low-price",
"version": "1.0.0",
"description": "Showcasing IKEA's low-priced items",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Mayandev/ikea-low-price.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mayandev/ikea-low-price/issues"
},
"homepage": "https://github.com/Mayandev/ikea-low-price#readme",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"sync": "node ./scripts/updateList.js",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"commit": "cz"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sharp": "^0.30.3",
"tailwind-scrollbar-hide": "^1.1.7"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@types/node": "16.11.26",
"@types/react-dom": "17.0.14",
"@types/react": "17.0.43",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"autoprefixer": "^10.4.4",
"axios": "^0.26.1",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.12.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"node-fetch": "2",
"p-limit": "^3.1.0",
"postcss": "^8.4.12",
"prettier": "2.6.2",
"tailwindcss": "^3.0.23",
"typescript": "4.6.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}