-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.74 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
{
"name": "startup-intel",
"description": "Securely share and store passwords and sensitive files.",
"version": "0.1.0",
"private": true,
"browserslist": "defaults, not ie <= 11",
"xo": {
"extends": [
"plugin:@next/next/core-web-vitals",
"plugin:typescript-sort-keys/recommended",
"xo-react"
],
"plugins": [
"simple-import-sort",
"typescript-sort-keys"
],
"prettier": true,
"rules": {
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/triple-slash-reference": "off",
"import/extensions": "off",
"import/order": "off",
"no-await-in-loop": "warn",
"react/jsx-sort-props": "warn",
"react/sort-prop-types": "warn",
"simple-import-sort/imports": "warn",
"sort-keys": "warn",
"unicorn/prefer-node-protocol": "off"
},
"space": true
},
"type": "module",
"devDependencies": {
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@next/eslint-plugin-next": "13.4.5",
"@types/node": "18.16.18",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"autoprefixer": "10.4.14",
"axios": "1.4.0",
"camel-case": "4.1.2",
"crawlee": "3.4.0",
"eslint-config-xo-react": "0.27.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"husky": "8.0.3",
"next-sitemap": "4.1.3",
"npm-check-updates": "16.10.12",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.3.0",
"sharp": "0.32.1",
"tailwindcss": "3.3.2",
"ts-node": "10.9.1",
"tslib": "2.5.3",
"typescript": "4.9.5",
"xo": "0.54.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/pro-light-svg-icons": "6.4.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@headlessui/react": "1.7.15",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/typography": "0.5.9",
"clsx": "1.2.1",
"next": "13.4.5",
"next-seo": "6.0.0",
"param-case": "3.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hotkeys-hook": "4.4.0"
},
"scripts": {
"badges": "docker run --rm -v $PWD/results:/home/chrome/reports emazzotta/lighthouse-badges /bin/sh -c \"lighthouse-badges --urls https://www.startupintel.dev/\"",
"build": "next build",
"clean": "rm -rf .next/ node_modules/",
"dev": "next dev",
"format": "prettier --write .",
"lint": "xo",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"prepare": "husky install",
"script:crawl": "ts-node ./scripts/yCombinator23.ts",
"script:combine": "ts-node ./scripts/combine.ts",
"start": "next start"
}
}