-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ibse",
"version": "0.6.1",
"description": "Editor for a modified format of Open Scripture's Hebrew Bible JSON version.",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"tauri": "tauri"
},
"license": "GPL-2.0",
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 12,
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-unused-vars": "off",
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
],
"no-multiple-empty-lines": 0,
"@typescript-eslint/no-unused-vars": [
"error"
],
"@typescript-eslint/ban-ts-comment": [
2,
{
"ts-ignore": "allow-with-description"
}
]
}
},
"prettier": {
"printWidth": 90,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
},
"jest": {
"preset": "solid-jest/preset/browser",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.ts"
],
"moduleNameMapper": {
"^assets/(.*)$": "<rootDir>/src/assets/$1",
"^components/(.*)$": "<rootDir>/src/components/$1",
"^stores/(.*)$": "<rootDir>/src/stores/$1",
"^styles/(.*)$": "<rootDir>/src/styles/$1",
"^tests/(.*)$": "<rootDir>/src/tests/$1",
"^types/(.*)$": "<rootDir>/src/types/$1",
"^utils/(.*)$": "<rootDir>/src/utils/$1"
}
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@tauri-apps/cli": "^1.1.1",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.1.2",
"babel-jest": "^29.1.2",
"babel-preset-jest": "^29.0.2",
"babel-preset-solid": "^1.5.7",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"jsdom": "^20.0.1",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.9",
"solid-jest": "^0.2.0",
"solid-testing-library": "^0.3.0",
"typescript": "^4.8.4",
"vite": "^3.1.7",
"vite-plugin-solid": "^2.3.9"
},
"dependencies": {
"@hope-ui/solid": "^0.6.7",
"@radix-ui/colors": "^0.1.8",
"@stitches/core": "^1.2.8",
"@tauri-apps/api": "^1.1.0",
"@thisbeyond/solid-dnd": "^0.7.2",
"phosphor-solid": "^1.1.5",
"react": "^18.2.0",
"solid-js": "^1.5.7",
"solid-toast": "^0.3.5",
"solid-transition-group": "^0.0.11"
}
}