-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
{
"name": "solid-wordle",
"version": "0.0.1",
"description": "A clone of Wordle made using Solidjs",
"engines": {
"node": "^14.0.0",
"yarn": "^1.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier './**/*.{js,jsx,ts,tsx,css,md,json,yml,html}' --check --config ./.prettierrc",
"format:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json,yml,yaml,html}' --config ./.prettierrc"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.26.0",
"autoprefixer": "10.4.7",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-solid": "0.5.0",
"postcss": "8.4.14",
"prettier": "2.2.1",
"tailwindcss": "3.0.24",
"typescript": "4.6.4",
"vite": "2.9.9",
"vite-plugin-solid": "2.2.6",
"vite-tsconfig-paths": "3.5.0"
},
"dependencies": {
"@types/node": "^17.0.35",
"classnames": "2.3.1",
"grapheme-splitter": "1.0.4",
"solid-js": "1.4.2"
}
}