-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.99 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.99 KB
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
{
"name": "brishty",
"version": "1.0.0",
"author": "Arka Mitra",
"scripts": {
"dev": "next",
"build": "npm run lint && npm run type-check && npm run test && next build",
"start": "next start",
"start-prod": "NODE_ENV=production next start",
"prod": "npm run build && npm run start-prod",
"type-check": "tsc",
"lint": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.ts,.tsx --fix .",
"test": "jest --collect-coverage",
"postbuild": "next-sitemap"
},
"dependencies": {
"@headlessui/react": "^1.1.1",
"@heroicons/react": "^1.0.1",
"@types/memory-cache": "^0.2.1",
"@types/react-bootstrap-typeahead": "^5.1.7",
"js-cookie": "^3.0.1",
"leaflet": "^1.7.1",
"memory-cache": "^0.2.0",
"moment": "^2.29.1",
"next": "^11.0.0",
"next-sitemap": "^1.6.203",
"react": "^17.0.2",
"react-bootstrap-typeahead": "^5.2.0",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.0"
},
"devDependencies": {
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^26.0.24",
"@types/js-cookie": "^3.0.1",
"@types/leaflet": "^1.7.4",
"@types/node": "^12.20.10",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"autoprefixer": "^10.2.5",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"jest-when": "^3.5.2",
"postcss": "^8.2.13",
"prettier": "^2.3.2",
"tailwindcss": "^2.1.2",
"typescript": "^4.4.4"
}
}