-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.32 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.32 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
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
102
103
104
105
{
"name": "maps-project",
"version": "0.1.0",
"private": true,
"description": "Do you want to know how your shipment is going and how long it will arrive? You just have to enter this app where you can review the travel of your shipment in real time, see the confirmation of departure and the confirmation of receipt.",
"keywords": [
"react",
"tracking",
"styled-components",
"delivery",
"pwa-app",
"map",
"real-time",
"map",
"chat",
"graphql",
"subscriptions"
],
"license": "Apache-2.0",
"dependencies": {
"@apollo/client": "~3.5.9",
"@emotion/react": "~11.7.1",
"@emotion/styled": "~11.8.1",
"emotion-normalize": "~11.0.1",
"google-map-react": "~2.1.10",
"graphql": "~16.3.0",
"graphql-tag": "~2.12.6",
"react": "~17.0.2",
"react-dom": "~17.0.2",
"react-hot-toast": "~2.2.0",
"react-router-dom": "~5.3.0",
"react-scripts": "5.0.0",
"subscriptions-transport-ws": "~0.11.0",
"web-vitals": "~0.2.4",
"workbox-background-sync": "~5.1.4",
"workbox-broadcast-update": "~5.1.4",
"workbox-cacheable-response": "~5.1.4",
"workbox-core": "~5.1.4",
"workbox-expiration": "~5.1.4",
"workbox-google-analytics": "~5.1.4",
"workbox-navigation-preload": "~5.1.4",
"workbox-precaching": "~5.1.4",
"workbox-range-requests": "~5.1.4",
"workbox-routing": "~5.1.4",
"workbox-strategies": "~5.1.4",
"workbox-streams": "~5.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest --passWithNoTests --watchAll=false",
"eject": "react-scripts eject",
"spelling": "cspell 'src/**/*.{js,jsx,md}' --no-must-find-files",
"spelling:ci": "cspell run --no-must-find-files",
"stylelint:ci": "stylelint --config .stylelintrc.json",
"eslint:ci": "eslint --color --cache -f table",
"stylelint": "stylelint --config .stylelintrc.json './**/*.styled.jsx'",
"lint": "eslint ./src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --write src --config ./.prettierrc.js",
"prettier:ci": "prettier --check --config ./.prettierrc.js",
"check": "npm run prettier && npm run eslint && npm run stylelint && npm run test"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@arkweid/lefthook": "0.7.6",
"@commitlint/cli": "13.2.0",
"@commitlint/config-conventional": "13.2.0",
"@testing-library/jest-dom": "~5.16.2",
"@testing-library/react": "~11.2.7",
"@testing-library/user-event": "~12.8.3",
"cspell": "5.11.1",
"eslint": "~8.10.0",
"eslint-config-prettier": "~8.5.0",
"eslint-config-standard": "~16.0.3",
"eslint-formatter-table": "~7.32.1",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-jest": "~26.1.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~6.0.0",
"eslint-plugin-react": "~7.29.3",
"prettier": "~2.5.1",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"stylelint-processor-styled-components": "1.10.0",
"stylelint-webpack-plugin": "2.2.2"
}
}