This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
forked from covid19-group/dinecph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.68 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
{
"name": "@abig/deliverychimbote",
"description": "Official repository for the Delivery Chimbote project.",
"author": {
"name": "AB Investment Group",
"email": "deliverychimbote@abig.pe",
"url": "https://deliverychimbote.com"
},
"version": "1.0.0",
"homepage": "https://deliverychimbote.com",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production next start -p 4000",
"export": "next build && next export",
"lint": "yarn run -s lint:code && yarn run -s lint:css",
"lint:code": "eslint --ext .js .",
"lint:css": "stylelint **/*.css",
"analyze": "NODE_ENV=production ANALYZE=true next build",
"analyze:server": "NODE_ENV=production BUNDLE_ANALYZE=server next build",
"analyze:browser": "NODE_ENV=production BUNDLE_ANALYZE=server next build"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.1.16",
"@next/bundle-analyzer": "^11.1.2",
"@react-google-maps/api": "^2.1.1",
"@tailwindcss/forms": "^0.3.2",
"airtable": "^0.11.0",
"autoprefixer": "^10.2.5",
"framer-motion": "^4.1.13",
"local-storage": "^2.0.0",
"next": "^11.1.2",
"next-seo": "^4.24.0",
"postcss": "^8.2.14",
"promise-polyfill": "^8.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.8",
"react-ga": "^3.3.0",
"react-obfuscate": "^3.6.7",
"slugify": "^1.5.2",
"tailwindcss": "^2.1.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1.2",
"eslint": "^7.26.0",
"eslint-plugin-react": "^7.23.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
}
}