-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.39 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
102
103
104
105
106
107
108
{
"name": "missionbit-website",
"version": "1.0.0",
"description": "Mission Bit's website",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next",
"build": "next build",
"postbuild": "node ./bin/generate-sitemap.js",
"export": "npm run build && next export",
"start": "next start",
"fix": "eslint --fix --ext js,jsx,ts,tsx .",
"lint": "eslint --ext js,jsx,ts,tsx .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"posttest": "eslint --ext js,jsx,ts,tsx .",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/missionbit/missionbit-website.git"
},
"keywords": [],
"author": "Mission Bit",
"license": "MIT",
"bugs": {
"url": "https://github.com/missionbit/missionbit-website/issues"
},
"homepage": "https://github.com/missionbit/missionbit-website#readme",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@sendgrid/mail": "^7.2.5",
"@sentry/browser": "^6.3.5",
"@stripe/react-stripe-js": "^1.6.0",
"@stripe/stripe-js": "^1.21.2",
"@types/micro": "^7.3.3",
"@types/micro-cors": "^0.1.1",
"clsx": "^1.1.1",
"cross-fetch": "^3.0.6",
"dayjs": "^1.8.35",
"material-ui-popup-state": "^1.7.1",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"mjml": "^4.6.3",
"mjml-react": "^2.0.0",
"next": "^11.1.2",
"next-compose-plugins": "^2.2.0",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"responsive-loader": "^2.1.1",
"sitemap": "^7.0.0",
"smoothscroll-polyfill": "^0.4.4",
"stripe": "^8.191.0",
"ts-debounce": "^3.0.0",
"use-elapsed-time": "^3.0.2",
"webp-loader": "^0.6.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^3.9.0",
"@next/bundle-analyzer": "^11.1.2",
"@next/eslint-plugin-next": "^11.1.2",
"@supabase/supabase-js": "^1.35.7",
"@types/eslint": "^8.4.3",
"@types/google.analytics": "^0.0.42",
"@types/gtag.js": "^0.0.7",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.4",
"@types/react": "^17.0.5",
"@types/smoothscroll-polyfill": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-unused-imports": "^1.1.1",
"husky": "^7.0.2",
"jest": "^27.2.1",
"lint-staged": "^11.1.2",
"prettier": "^2.1.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"resolutions": {
"@types/eslint": "8.4.3"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "identity-obj-proxy"
}
}
}