forked from akivajgordon/tikkun.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "tikkun.io",
"version": "1.0.0",
"description": "The online tikkun you always wanted, but never had.",
"main": "index.js",
"type": "module",
"ava": {
"files": [
"src/*.test.js"
],
"timeout": "40s",
"nodeArguments": [
"--import=tsimp"
]
},
"scripts": {
"test": "ava",
"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"
},
"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": {
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"ava": "^5.3.1",
"eslint": "^9.11.1",
"gh-pages": "^5.0.0",
"globals": "^15.9.0",
"jiti": "^2.0.0",
"postcss-import": "^16.1.0",
"tsimp": "^2.0.11",
"typescript": "^5.1.6",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.7"
}
}