-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
97 lines (97 loc) · 3.35 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
{
"name": "coronabingo",
"version": "1.23.1",
"scripts": {
"prebuild": "npm run validate-locales",
"build": "next-translate && next build",
"build-start": "npm run build && npm run start",
"cypress-open": "cypress open",
"cypress-run": "cypress run --record --key $CYPRESS_PROJECT_KEY",
"dev": "next-translate && next dev",
"generate-tickets": "ts-node scripts/generate-tickets",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"start": "next start",
"test": "start-server-and-test build-start http://localhost:3000 cypress-run",
"validate-locales": "ts-node scripts/validate-locales",
"validate-tickets": "ts-node scripts/validate-tickets"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate-locales && tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@ctrl/react-adsense": "^1.1.3",
"@fullhuman/postcss-purgecss": "^2.1.0",
"@packtracker/webpack-plugin": "^2.3.0",
"@sentry/browser": "^5.15.0",
"@svgr/webpack": "^5.2.0",
"@types/classnames": "^2.2.10",
"@types/gsheets": "^2.0.0",
"@types/markdown-it": "^10.0.1",
"@types/node": "^13.9.2",
"@types/react": "^16.9.35",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-modal": "^3.10.5",
"@types/react-tabs": "^2.3.1",
"@types/zipcelx": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@zeit/next-bundle-analyzer": "^0.0.3",
"@zeit/next-source-maps": "0.0.3",
"autoprefixer": "^9.7.4",
"classnames": "^2.2.6",
"cypress": "^4.4.0",
"date-fns": "^2.15.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"firebase": "^7.15.5",
"gray-matter": "^4.0.2",
"gsheets": "^1.2.3",
"husky": "^4.2.3",
"knuth-shuffle": "^1.0.8",
"lint-staged": "^10.1.2",
"markdown-it": "^11.0.0",
"next": "9.5.1",
"next-images": "^1.3.1",
"next-translate": "^0.14.2",
"pdf-parse": "^1.1.1",
"postcss-import": "^12.0.1",
"prettier": "^1.19.1",
"raw-loader": "^4.0.1",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.0",
"react-icons": "^3.9.0",
"react-markdown": "^4.3.1",
"react-markdown-editor-lite": "^1.1.5",
"react-modal": "^3.11.2",
"react-tabs": "^3.1.0",
"react-toastify": "^5.5.0",
"react-tweet-embed": "^1.2.2",
"react-youtube": "^7.11.2",
"renature": "^0.4.0",
"slugify": "^1.4.5",
"start-server-and-test": "^1.11.0",
"swr": "^0.1.18",
"tailwindcss": "^1.4.6",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"url-loader": "^4.0.0",
"zipcelx": "^1.6.2"
},
"license": "MIT",
"devDependencies": {
"webpack": "^4.44.2"
}
}