-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "ic-wallet-zustore",
"private": true,
"version": "0.0.0",
"scripts": {
"test": "npx jest",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@dfinity/agent": "^0.11.2",
"@dfinity/auth-client": "^0.11.2",
"@dfinity/candid": "^0.11.2",
"@dfinity/principal": "^0.11.2",
"@fontsource/inter": "^4.5.10",
"@internet-identity-labs/nfid-sdk-react": "^0.0.1-alpha.18",
"@internet-identity-labs/react-ic-ii-auth": "^0.0.19",
"ic-stoic-identity": "^2.0.0",
"ictool": "^0.0.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0",
"react-toastify": "^9.0.1",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@storybook/jest": "^0.0.10",
"@storybook/react": "^6.5.3",
"@storybook/testing-library": "^0.0.11",
"@storybook/testing-react": "^1.3.0",
"@testing-library/react": "^13.2.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"dotenv": "^16.0.1",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^28.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vite-tsconfig-paths": "^3.4.1"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/.mocks/fileMock.js",
"\\.css$": "identity-obj-proxy"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"preset": "ts-jest",
"testEnvironment": "jsdom"
}
}