-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 754 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 754 Bytes
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
{
"name": "clicker-tutorial-solid",
"version": "1.0.0",
"private": true,
"homepage": "http://alaricus.github.io/clicker-tutorial-solid",
"dependencies": {
"solid-js": "^1.4.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-solid": "^0.7.1",
"gh-pages": "^4.0.0",
"typescript": "^4.7.4",
"vite": "^3.0.0",
"vite-plugin-solid": "^2.3.0"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
}
}