-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 853 Bytes
/
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
{
"name": "chumbucket",
"private": true,
"version": "1.1.0",
"description": "an example glitch app with typescript and webpack",
"main": "src/index.ts",
"scripts": {
"dev": "vite",
"start": "npm run dev",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.{tsx,ts}\"",
"lint:fix": "eslint \"src/**/*.{tsx,ts}\" --fix",
"spellcheck": "git diff --name-only | cspell --file-list stdin"
},
"author": "stagfoo",
"license": "ISC",
"pre-commit": [
"lint:fix",
"spellcheck"
],
"dependencies": {
"joro": "^1.0.4",
"morphdom": "^2.6.1",
"nanohtml": "^1.9.0",
"nanomorph": "^5.4.3",
"obake.js": "^1.2.1",
"page": "^1.11.4",
"vite-plugin-singlefile": "^0.13.2"
},
"devDependencies": {
"typescript": "^4.9.3",
"vite": "^4.0.0"
}
}