-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "methodical-create-user",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"test": "jest --watch",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
"@testing-library/user-event": "14.1.1",
"@types/lodash": "4.14.178",
"@types/react-dom": "^18.0.0",
"@types/react": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"msw": "0.39.2",
"typescript": "^4.6.3",
"vite-tsconfig-paths": "3.4.0",
"vite": "^2.9.2",
"yup": "0.32.11",
"whatwg-fetch": "3.6.2"
},
"jest": {
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/tmp"
],
"moduleDirectories": [
"node_modules",
"src"
],
"transformIgnorePatterns": [
"node_modules/(?!(lib0|y-protocols)/)"
],
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.ts"
],
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy"
}
}
}