-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "impermanent-tools",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prepare": "husky install"
},
"author": "Nick Dandakis",
"license": "MIT",
"dependencies": {
"date-fns": "^2.24.0",
"graphql": "^15.7.2",
"graphql-request": "^3.6.1",
"next": "^11.1.2",
"pure-react-carousel": "^1.27.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.31.0"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"file-type": "^16.5.3",
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"node-fetch": "^3.0.0",
"prettier": "^2.4.1",
"sharp": "^0.29.1"
},
"lint-staged": {
"*.{jsx,js}": "eslint --fix",
"*.{js,jsx,css,md}": "prettier --write"
},
"engines": {
"node": "^14",
"npm": "^7"
},
"browserslist": [
"defaults",
"not ie <= 11"
]
}