-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.08 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
{
"private": true,
"name": "fastingtime",
"version": "2.0.0",
"license": "MIT",
"module": "es6",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"re:clean": "rescript clean -with-deps",
"test": "jest ./tests",
"precommit": "pretty-quick --staged"
},
"devDependencies": {
"@jihchi/vite-plugin-rescript": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "2.8.8",
"pretty-quick": "^3.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rescript": "^10.1.4",
"vite": "^3.2.8"
},
"dependencies": {
"@rescript/react": "^0.11.0",
"@xstate/react": "^3.2.2",
"date-fns": "^2.30.0",
"hijri-date": "^0.2.2",
"requestanimationframe-timer": "^3.0.3",
"rescript-classnames": "^6.0.0",
"usehooks-ts": "^2.12.1",
"xstate": "^4.38.3"
},
"jest": {
"verbose": true,
"setupFiles": [
"<rootDir>/src/tests/__mocks__/browserMocks.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
}
}