-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.9 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "happy",
"version": "0.1.0",
"private": true,
"author": "r3nanp <[email protected]>",
"license": "MIT",
"homepage": "https://happy-ebon.vercel.app",
"readme": "https://github.com/r3nanp/happy/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/r3nanp/happy.git"
},
"keywords": [
"orphanages",
"webapp",
"maps",
"location"
],
"bugs": {
"url": "https://github.com/r3nanp/happy/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --max-warnings=0 && next lint",
"postinstall": "husky install",
"build-storybook": "build-storybook -s ./public",
"storybook": "start-storybook -s ./public -p 6006",
"test": "jest --maxWorkers=50%",
"test:watch": "jest --watch --maxWorkers=25%",
"test:ci": "jest --runInBand",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"config": {
"lint-staged": {
"src/**/*.ts{x}": [
"yarn lint",
"yarn test --bail --findRelatedTests"
]
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@crello/react-lottie": "^0.0.11",
"axios": "^0.21.1",
"framer-motion": "^4.1.17",
"joi": "^17.4.2",
"leaflet": "^1.7.1",
"next": "11.0.1",
"next-pwa": "^5.2.24",
"next-seo": "^4.26.0",
"polished": "^4.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.1.1",
"react-icons": "^4.2.0",
"react-leaflet": "^3.2.1",
"react-query": "^3.34.7",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/runtime": "^7.14.8",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/leaflet": "^1.7.4",
"@types/node": "^16.4.10",
"@types/react": "^17.0.15",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-plugin-styled-components": "^1.13.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.10.1",
"husky": "^7.0.4",
"jest": "^27.0.6",
"jest-styled-components": "^7.0.5",
"lint-staged": "^12.1.3",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}