-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.19 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"backend:build-script": "ncc build backend/scripts/parseTweets__run__.ts -o backend/build",
"backend:run-script": "node backend/build/index.js",
"test": "jest",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:types",
"lint:eslint": "eslint '**/**.{js,ts,tsx}'",
"lint:prettier": "prettier '**/**.{js,ts,tsx}' --check",
"lint:types": "tsc --noEmit",
"tdd": "jest --watch --verbose",
"heroku-postbuild": "yarn backend:build-script",
"postinstall": "node postinstall.js"
},
"engines": {
"node": ">=12.14.0",
"yarn": ">=1.22.4"
},
"dependencies": {
"@chakra-ui/core": "^1.0.0-rc.8",
"@chakra-ui/icons": "^1.0.0-rc.8",
"@mailchimp/mailchimp_marketing": "^3.0.19",
"@prisma/client": "2.5",
"@sentry/browser": "^5.27.2",
"@sentry/integrations": "^5.27.2",
"@sentry/node": "^5.27.2",
"@sentry/webpack-plugin": "^1.13.0",
"@types/aws-sdk": "^2.7.0",
"@types/dompurify": "^2.0.4",
"@types/nprogress": "^0.2.0",
"@types/shortid": "^0.0.29",
"@vercel/ncc": "^0.24.1",
"@zeit/next-source-maps": "^0.0.4-canary.1",
"aws-sdk": "^2.736.0",
"axios": "^0.20.0",
"babel-eslint": "^10.1.0",
"cross-fetch": "^3.0.4",
"dayjs": "^1.8.26",
"dotenv": "^8.2.0",
"encodeurl": "^1.0.2",
"escape-string-regexp": "^4.0.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"execa": "^4.0.3",
"faker": "^4.1.0",
"focus-visible": "^5.2.0",
"framer-motion": "^2.9.4",
"lodash.memoize": "^4.1.2",
"lodash.throttle": "^4.1.1",
"metascraper": "^5.14.14",
"metascraper-description": "^5.14.14",
"metascraper-image": "^5.14.14",
"metascraper-title": "^5.14.14",
"next": "^9.5.5",
"next-pwa": "^3.1.5",
"next-seo": "^4.7.3",
"nprogress": "^0.2.0",
"ramda": "^0.27.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-ga": "^3.2.0",
"react-hotjar": "^2.2.1",
"react-intersection-observer": "^8.28.4",
"react-layout-effect": "^1.0.5",
"react-spring": "^9.0.0-rc.3",
"react-string-replace": "^0.4.4",
"replace-in-file": "^6.1.0",
"swr": "^0.3.2",
"ts-node": "^8.10.2",
"twitter-d": "^0.4.0",
"twitter-lite": "^0.11.0",
"typescript": "^4.0.2",
"unescape": "^1.0.1"
},
"devDependencies": {
"@prisma/cli": "2.5",
"@types/faker": "^4.1.12",
"@types/jest": "^25.2.3",
"@types/lodash.memoize": "^4.1.6",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^14.0.6",
"@types/ramda": "^0.27.6",
"@types/react": "^16.9.36",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint-plugin-import": "^2.21.2",
"jest": "^26.0.1",
"jest-date-mock": "^1.0.8",
"prettier": "^2.0.5",
"ts-jest": "^26.4.4"
}
}