-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.93 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "website",
"version": "0.0.1",
"private": true,
"files": [
"pages",
"types",
"cypress",
"components",
"config",
"client",
"server",
"scripts"
],
"scripts": {
"build": "next build",
"postbuild": "next-sitemap",
"clean": "rimraf coverage .next",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:ci": "start-server-and-test dev http://localhost:3000 cy:run:lcl",
"cy:run:dev": "npm run cy:run -- --config baseUrl=\"https://dev.lukeandjadi.com\"",
"cy:run:lcl": "npm run cy:run -- --config baseUrl=\"http://localhost:3000\"",
"cy:run:ord": "npm run cy:run -- --config baseUrl=\"https://lukeandjadi.com\"",
"dev": "NODE_ENV=local next dev",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --ignore-unknown --no-error-on-unmatched-pattern --ignore-path .gitignore './**/*'",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"setup": "doppler setup --project lukeandjadi-com",
"setup:ci": "npm run setup -- --config ci",
"setup:dev": "npm run setup -- --config dev",
"setup:prd": "npm run setup -- --config prd",
"setup:stg": "npm run setup -- --config stg",
"start": "next start",
"test": "jest --passWithNoTests",
"postinstall": "cd pulumi && npm ci --no-progress",
"validate": "run-p -l prettier:check lint test",
"docker:infra": "docker-compose up --build -d",
"git-pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,cjs,json}": "eslint --cache --fix",
"*": "prettier --ignore-unknown --no-error-on-unmatched-pattern --ignore-path .gitignore --write"
},
"dependencies": {
"@clerk/nextjs": "3.7.1",
"@growthbook/growthbook-react": "0.9.0",
"@hapi/iron": "7.0.0",
"@headlessui/react": "1.6.6",
"@heroicons/react": "1.0.6",
"@logtail/node": "0.1.12",
"@logtail/winston": "0.1.12",
"@lukeshay/next-router": "0.4.0",
"axios": "0.27.2",
"classnames": "2.3.1",
"cookies": "0.8.0",
"correlation-id": "4.0.0",
"date-fns": "2.28.0",
"deep-diff": "1.0.2",
"fast-equals": "3.0.3",
"just-flush": "2.1.1",
"merge-anything": "5.0.2",
"next": "12.2.2",
"next-seo": "5.4.0",
"pg": "8.7.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "9.0.5",
"sequelize": "6.21.3",
"sequelize-cockroachdb": "6.0.5",
"sharp": "0.30.7",
"uuid": "8.3.2",
"winston": "3.8.1",
"yup": "0.32.11"
},
"devDependencies": {
"@sinonjs/fake-timers": "9.1.2",
"@tailwindcss/typography": "0.5.3",
"@types/chance": "1.1.3",
"@types/cookies": "0.7.7",
"@types/correlation-id": "2.1.2",
"@types/deep-diff": "1.0.1",
"@types/jest": "27.5.1",
"@types/pg": "8.6.5",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/uuid": "8.3.4",
"@vercel/git-hooks": "1.0.0",
"autoprefixer": "10.4.7",
"chance": "1.1.8",
"cypress": "10.3.0",
"eslint": "8.19.0",
"eslint-config-get-off-my-lawn": "7.1.0",
"jest": "27.5.1",
"lint-staged": "13.0.3",
"next-sitemap": "3.1.10",
"npm-run-all": "4.1.5",
"postcss": "8.4.14",
"prettier": "2.7.1",
"prettier-config-get-off-my-lawn": "1.0.0",
"prettier-plugin-packagejson": "2.2.18",
"prettier-plugin-tailwindcss": "0.1.12",
"rimraf": "3.0.2",
"start-server-and-test": "1.14.0",
"tailwindcss": "3.1.6",
"typescript": "4.7.4"
},
"engines": {
"node": "16.x"
}
}