-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.99 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
{
"name": "bookmark.wtf",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "Clemens Akens",
"type": "module",
"scripts": {
"ci": "run-p compile:check format:check lint test",
"build:prod": "node build.js",
"postbuild:prod": "size-limit",
"build:dev": "NODE_ENV=development node build.js",
"build:watch": "NODE_ENV=development node build.js --watch",
"compile:check": "tsc --pretty",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --silent",
"test:e2e": "playwright test --project=bookmark.wtf",
"test:e2e:localhost": "playwright test --project=localhost",
"start": "aws-simple start",
"predeploy": "npm run build:prod && cdk bootstrap --app 'npx aws-simple synth' && cdk diff --app 'npx aws-simple synth' --no-asset-metadata",
"deploy": "cdk deploy --app 'npx aws-simple synth' --no-asset-metadata",
"postdeploy": "aws-simple upload --yes && aws-simple redeploy --yes",
"codegen": "graphql-codegen --config codegen.yml",
"postcodegen": "npm run format:write"
},
"dependencies": {
"@urql/core": "^4.0.11",
"cookie": "^0.5.0",
"identicon.js": "^2.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"state-guard": "^4.0.0",
"wtfkit": "^1.1.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@jest/globals": "^29.6.1",
"@playwright/test": "^1.36.1",
"@size-limit/preset-app": "^8.2.6",
"@swc/core": "^1.3.69",
"@swc/jest": "^0.2.26",
"@types/aws-lambda": "^8.10.119",
"@types/cookie": "^0.5.1",
"@types/express": "^4.17.17",
"@types/identicon.js": "^2.3.1",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/speakeasy": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"autoprefixer": "^10.4.14",
"aws-cdk": "^2.87.0",
"aws-simple": "^18.0.3",
"esbuild": "^0.18.13",
"esbuild-html-plugin": "^1.0.0",
"esbuild-style-plugin": "^1.6.2",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-markdown": "^3.0.0",
"jest": "^29.6.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.36.1",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"size-limit": "^8.2.6",
"sonnar": "^1.0.0",
"speakeasy": "^2.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
},
"size-limit": [
{
"name": "brotli compression",
"path": "./dist/static/app-*.js",
"brotli": true
},
{
"name": "gzip compression",
"path": "./dist/static/app-*.js",
"gzip": true
},
{
"name": "no compression",
"path": "./dist/static/app-*.js",
"gzip": false
}
]
}