-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "flamethrower-router",
"version": "0.0.0-meme.12",
"description": "Blazingly fast SPA-like router for static sites",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/fireship-io/flamethrower.git"
},
"homepage": "https://github.com/fireship-io/flamethrower#readme",
"scripts": {
"dev": "vite build --watch",
"build": "vite build && npx tsc --emitDeclarationOnly",
"serve": "serve ./example",
"test": "playwright test",
"deploy": "node ./deploy-vercel.mjs && vercel deploy --prebuilt"
},
"keywords": [],
"author": "Jeff Delaney",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.25.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.15.0",
"prettier": "^2.7.1",
"serve": "^14.0.1",
"typescript": "^4.7.4",
"vite": "^3.0.7"
}
}