-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.58 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
{
"name": "subsmarine",
"version": "1.0.0",
"description": "Subsmarine surfaces your email newsletters for easy reading.",
"repository": "https://github.com/GriffinSauce/subsmarine.git",
"homepage": "",
"main": "",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:es": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:ts": "npx tsc -p tsconfig.json --noEmit",
"lint": "yarn lint:ts && yarn lint:es",
"format": "prettier --write .",
"test": "jest",
"test-watch": "jest --watch",
"test:coverage": "jest --coverage",
"ts-coverage": "typescript-coverage-report",
"ts-prune": "ts-prune"
},
"author": "Joris Griffioen (https://joris.rocks)",
"license": "MIT",
"dependencies": {
"@artsy/fresnel": "^3.4.0",
"@auth0/nextjs-auth0": "^1.7.0",
"@testing-library/dom": "^7.29.6",
"@types/jest-axe": "^3.5.1",
"date-fns": "^2.17.0",
"debug": "^4.3.1",
"framer-motion": "^3.7.0",
"interweave": "^13.0.0",
"ioredis": "^5.0.4",
"lodash-es": "^4.17.21",
"lz4": "^0.6.5",
"mailslurp-client": "^15.14.1",
"nanoid": "^3.3.1",
"next": "^12.1.0",
"next-pwa": "^5.0.5",
"next-themes": "^0.1.1",
"p-throttle": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-loading-skeleton": "^3.0.3",
"react-query": "3.9.8",
"tailshake": "^0.0.3",
"tailwind": "^4.0.0",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.5",
"@types/debug": "^4.1.5",
"@types/ioredis": "^4.19.4",
"@types/jest": "^26.0.20",
"@types/lodash-es": "^4.17.6",
"@types/lz4": "^0.6.0",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"autoprefixer": "^10.4.4",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sonarjs": "^0.6.0",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.8",
"ts-prune": "^0.10.3",
"typescript": "^4.3.5",
"typescript-coverage-report": "^0.5.0"
},
"volta": {
"node": "18.12.1",
"yarn": "1.22.10"
}
}