-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "ic-auth",
"version": "0.9.1",
"description": "A simple to use, modular package for integrating Internet Computer authentication providers into your app.",
"author": "Daniel McCoy (https://danielmccoy.us/)",
"license": "MIT",
"keywords": [
"ic",
"internet computer",
"auth",
"authentication",
"identity",
"stoic",
"stoic identity",
"dfinity"
],
"repository": {
"type": "git",
"url": "https://github.com/id-daniel-mccoy/ic-auth.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && npx tsc",
"serve": "vite preview",
"setup": "npm install && npm audit fix && dfx start --clean --background && dfx deploy && dfx stop && echo 'Setup complete!'"
},
"dependencies": {
"@dfinity/agent": "0.19.3",
"@dfinity/auth-client": "^0.19.3",
"@dfinity/authentication": "0.14.2",
"@dfinity/candid": "0.19.3",
"@dfinity/identity": "0.19.3",
"@dfinity/principal": "0.19.3",
"ic-stoic-identity": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@vitejs/plugin-react-refresh": "^1.3.6",
"buffer": "^6.0.3",
"ic-stoic-identity": "^2.0.0",
"typescript": "^4.4.3",
"vite": "^2.5.7"
}
}