-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
44
45
46
47
{
"name": "braille-translator",
"version": "0.0.0",
"description": "Convert between Braille and Latin characters",
"main": "index.html",
"scripts": {
"test": "jest",
"format-fix": "prettier --write .",
"format-check": "prettier --check .",
"lint-fix": "eslint --fix 'src/**'",
"lint-check": "eslint 'src/**'",
"fix": "npm run format-fix && npm run lint-fix",
"release": "npm run format-check && npm run lint-check && npm run build && npm run test",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"author": "Dustin Toff",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.21.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-react": "^7.30.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"sass": "^1.54.4",
"ts-jest": "^28.0.7",
"typescript": "^4.6.4",
"vite": "^3.2.7",
"vite-plugin-svgr": "^2.2.1"
},
"dependencies": {
"hyphenation.en-us": "^0.2.1",
"hypher": "^0.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite-plugin-commonjs": "^0.10.3"
}
}