This repository was archived by the owner on Jun 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.39 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.39 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
106
107
108
109
110
111
112
113
{
"name": "dasher-user",
"version": "0.1.4",
"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"],
"repository": {
"type": "git",
"url": "https://github.com/Azordev/dasher-user/"
},
"bugs": {
"url" : "https://github.com/Azordev/dasher-user/issues"
},
"license" : "Apache-2.0",
"author": {
"name": "Israel Laguan",
"email": "israellaguan@gmail.com",
"url": "https://github.com/Israel-Laguan"
},
"contributors": [
{"name":"Victor Peña","email":"victordev2002@gmail.com","url":"https://github.com/Katsu08"},
{"name":"Emmanuel Azócar","email":"azocarmel@gmail.com","url":"https://github.com/e-azocar"},
{"name":"Roman Rodriguez","email":"romanrodri192@gmail.com","url":"https://github.com/romanrguez192"},
{"name":"Tony Tarco","email":"tonytarco@hotmail.com","url":"https://github.com/Tonytarco"},
{"name":"Angelica Molina","email":"angeli.molina1@gmail.com","url":"https://github.com/angelik0828"},
{"name":"Ildebrando Quinchoa", "email":"ildebrandoefrain@gmail.com","url":"https://github.com/ildebr"},
{"name":"Denis Osuna","email":"denisosuna@gmail.com","url":"https://github.com/denisosuna"},
{"name":"Jose Hernandez","email":"josehernandez12@gmail.com","url":"https://github.com/elpollo12"}
],
"dependencies": {
"@apollo/client": "~3.5.9",
"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-router-dom": "~5.3.0",
"styled-components": "~5.3.3",
"styled-normalize": "~8.0.7",
"subscriptions-transport-ws": "~0.11.0",
"web-vitals": "~2.1.4",
"workbox-background-sync": "6.3.0",
"workbox-broadcast-update": "6.3.0",
"workbox-cacheable-response": "6.3.0",
"workbox-core": "6.5.0",
"workbox-expiration": "6.3.0",
"workbox-google-analytics": "6.3.0",
"workbox-navigation-preload": "6.3.0",
"workbox-precaching": "6.3.0",
"workbox-range-requests": "6.3.0",
"workbox-routing": "6.3.0",
"workbox-strategies": "6.3.0",
"workbox-streams": "6.3.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"eject": "react-app-rewired eject",
"spelling": "cspell lint 'src/**/*.{js,jsx,md}'",
"spelling:ci": "cspell run",
"stylelint:ci": "stylelint --config .stylelintrc.json",
"eslint:ci": "eslint --color --cache -f table",
"stylelint": "stylelint --config .stylelintrc.json './**/*.styled.jsx'",
"eslint": "eslint src --color --cache -f table",
"lint:js:fix": "eslint src --fix",
"prettier": "prettier src --write --config ./.prettierrc.js",
"prettier:ci": "prettier --write --config ./.prettierrc.js",
"test": "jest --passWithNoTests",
"test:c": "jest --coverage --watchAll=false --ci --passWithNoTests",
"test:cw": "jest --coverage --watchAll",
"check": "npm run stylelint && npm run eslint && npm run prettier && npm run test:c",
"lefthook": "lefthook run lint"
},
"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": "~12.1.3",
"@testing-library/user-event": "~13.5.0",
"cspell": "5.11.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.26.1",
"jest": "26.6.0",
"prettier": "2.4.1",
"react-app-rewired": "2.1.8",
"react-scripts": "~4.0.3",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"stylelint-processor-styled-components": "1.10.0",
"stylelint-webpack-plugin": "2.2.2"
},
"watch": {
"serve": "src/service-worker.js"
}
}