-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "meteo",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint --max-warnings 0 '**/*.{js,jsx}'",
"test": "jest",
"test:coverage": "jest --coverage",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"lint-staged": {
"**/*.{js,jsx}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"isomorphic-unfetch": "^3.0.0",
"next": "^9.5.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"swr": "^0.2.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"enzyme-to-json": "^3.5.0",
"eslint": "^6.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.5.4",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.3.0",
"standard": "^14.3.4",
"stylelint-config-standard": "^20.0.0"
},
"description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/zeit/next.js/tree/canary/packages/create-next-app).",
"main": "jest.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/SheehanTX/meteo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SheehanTX/meteo/issues"
},
"homepage": "https://github.com/SheehanTX/meteo#readme"
}