forked from dailydotdev/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.22 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
{
"name": "daily-webapp",
"private": true,
"scripts": {
"dev": "next dev -p 5002",
"build": "next build",
"start": "next start",
"lint:css": "stylelint '**/*.{ts,tsx}'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"pretest": "npm run lint && npm run lint:css",
"test": "node --expose-gc ./node_modules/.bin/jest --logHeapUsage",
"deploy": "vercel"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@types/google.analytics": "0.0.41",
"balloon-css": "^1.2.0",
"classnames": "^2.3.1",
"date-fns": "^2.20.0",
"dompurify": "^2.2.7",
"focus-visible": "^5.2.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"idb-keyval": "^5.0.4",
"lazysizes": "^5.3.2",
"linkifyjs": "^2.1.9",
"lodash.clonedeep": "^4.5.0",
"next": "^10.1.3",
"next-plugin-preact": "^3.0.4",
"next-pwa": "^5.2.5",
"next-seo": "^4.23.0",
"node-fetch": "^2.6.1",
"preact": "^10.5.13",
"preact-render-to-string": "^5.1.19",
"react": "npm:@preact/[email protected]",
"react-contexify": "^5.0.0",
"react-dom": "npm:@preact/[email protected]",
"react-flip-toolkit": "^7.0.13",
"react-intersection-observer": "^8.31.0",
"react-modal": "^3.12.1",
"react-query": "^3.13.8",
"react-transition-group": "^4.4.1",
"subscriptions-transport-ws": "^0.9.18"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@emotion/eslint-plugin": "^11.2.0",
"@emotion/jest": "^11.3.0",
"@next/bundle-analyzer": "^10.1.3",
"@svgr/cli": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/jit": "^0.1.18",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/preact": "^2.0.1",
"@testing-library/user-event": "^13.1.3",
"@types/classnames": "^2.2.11",
"@types/dompurify": "^2.2.1",
"@types/jest": "^26.0.22",
"@types/linkifyjs": "^2.1.3",
"@types/lodash.clonedeep": "^4.5.6",
"@types/nock": "^11.1.0",
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.10",
"@types/react": "^17.0.3",
"@types/react-modal": "^3.12.0",
"@types/react-transition-group": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.22.0",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.6.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.0.1",
"babel-plugin-react-remove-properties": "^0.3.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest-dom": "^3.8.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-testing-library": "^3.10.2",
"fake-indexeddb": "^3.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"nock": "^13.0.11",
"postcss": "^8.2.10",
"postcss-custom-media": "^8.0.0",
"postcss-focus-visible": "^5.0.0",
"postcss-import": "^14.0.1",
"postcss-nesting": "^7.0.1",
"postcss-simple-vars": "^6.0.3",
"prettier": "^2.2.1",
"stylelint": "^13.12.0",
"stylelint-config-recommended": "^4.0.0",
"tailwindcss": "^2.1.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4",
"vercel": "^21.3.3"
}
}