-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "gosling-cheatsheet",
"version": "0.0.1",
"description": "Cheat Sheet for Gosling Visualization",
"repository": "https://github.com/gosling-lang/gosling-cheatsheet",
"homepage": "https://gosling-lang.github.io/gosling-cheatsheet/",
"author": "Sehi L'Yi",
"license": "MIT",
"type": "module",
"private": false,
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"format": "yarn eslint --fix --ext .ts --ext .tsx src/",
"build-ts": "npx tsc -p tsconfig.json",
"images": "yarn build-ts && node --es-module-specifier-resolution=node build/index.js",
"predeploy": "yarn build",
"deploy": "touch dist/.nojekyll; gh-pages -d dist -t --git git"
},
"dependencies": {
"react": "17",
"react-dom": "17"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^8.22.0",
"eslint-plugin-react": "^7.30.1",
"gh-pages": "^4.0.0",
"gosling.js": "^0.9.22",
"husky": "^8.0.1",
"puppeteer": "^16.1.0",
"typescript": "^4.7.4",
"vite": "^3.0.7"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && git add ."
}
}
}