-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"name": "tikkun.io",
"version": "1.0.0",
"description": "The online tikkun you always wanted, but never had.",
"main": "index.js",
"type": "module",
"ava": {
"extensions": {
"js": true,
"ts": "module"
},
"timeout": "30s",
"files": [
"src/**/*.test.*"
],
"nodeArguments": [
"--experimental-transform-types"
]
},
"scripts": {
"test": "ava",
"vitest": "vitest",
"test:watch": "npm test -- --watch",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "eslint --flag unstable_ts_config",
"typecheck": "tsc",
"checks": "npm run lint && npm run typecheck",
"deploy": "npm run clean && npm run checks && npm run build && cp -R static/ dist && echo 'tikkun.io\nwww.tikkun.io' > dist/CNAME && gh-pages -d dist",
"test:browser": "vitest --workspace=vitest.workspace.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akivajgordon/tikkun.io.git"
},
"author": "Akiva Gordon <akivag29@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/akivajgordon/tikkun.io/issues"
},
"homepage": "https://github.com/akivajgordon/tikkun.io#readme",
"dependencies": {
"@hebcal/core": "^5.7.7",
"@hebcal/hdate": "^0.12.0",
"@hebcal/leyning": "^9.0.1",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/browser": "^2.1.4",
"ava": "^5.3.1",
"eslint": "^9.11.1",
"gh-pages": "^5.0.0",
"globals": "^15.9.0",
"jiti": "^2.0.0",
"playwright": "^1.48.2",
"postcss-import": "^16.1.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.7",
"vitest": "^2.1.4",
"vitest-browser-react": "^0.0.3"
}
}