-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.1 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": "word-ladder",
"version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest",
"lint": "eslint **/*.civet",
"deploy": "npm run build && gh-pages -d dist",
"prepare": "npm run wordlist",
"wordlist": "curl --create-dirs -o data/wordlist.ecprice.txt https://www.mit.edu/~ecprice/wordlist.10000 && curl --create-dirs -o data/wordlist.dwyl.txt https://cdn.jsdelivr.net/gh/dwyl/english-words/words_alpha.txt"
},
"license": "MIT",
"devDependencies": {
"@danielx/civet": "0.7.27",
"@eslint/js": "^9.9.1",
"eslint": "^9.9.1",
"eslint-plugin-civet": "^0.0.5",
"eslint-plugin-solid": "^0.14.2",
"gh-pages": "^6.1.1",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2",
"vite-plugin-solid": "^2.10.1",
"vitest": "^2.0.5"
},
"dependencies": {
"solid-js": "^1.8.22"
},
"packageManager": "[email protected]+sha256.9551e803dcb7a1839fdf5416153a844060c7bce013218ce823410532504ac10b"
}