This repository was archived by the owner on Apr 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.91 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.91 KB
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
{
"name": "bachelor",
"version": "1.0.0",
"description": "Bachelor project with NTNU and Symfoni, spring 2022.",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"test": "mocha --require ts-node/register -t 15000 '__tests__/**/*.ts'",
"lint": "npx eslint src/**",
"prepare": "husky install",
"dev": "nodemon src/api/server.ts",
"playground": "ts-node src/playground.ts",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"build-web": "expo build:web",
"build-android": "eas build -p android"
},
"repository": {
"type": "git",
"url": "git+https://github.com/symfoni/bachelor.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/symfoni/bachelor/issues"
},
"homepage": "https://github.com/symfoni/bachelor#readme",
"dependencies": {
"@react-native-community/checkbox": "^0.5.12",
"@react-native-picker/picker": "2.2.1",
"@react-navigation/native": "^6.0.8",
"@react-navigation/native-stack": "^6.5.2",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@veramo/core": "^3.1.0",
"@veramo/credential-w3c": "^3.1.0",
"@veramo/data-store": "^3.1.0",
"@veramo/did-comm": "^3.1.0",
"@veramo/did-manager": "^3.1.0",
"@veramo/did-provider-ethr": "^3.1.0",
"@veramo/did-provider-web": "^3.1.0",
"@veramo/did-resolver": "^3.1.0",
"@veramo/key-manager": "^3.1.0",
"@veramo/kms-local": "^3.1.0",
"@walletconnect/react-native-dapp": "^1.7.7",
"axios": "^0.26.1",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"ethers": "^5.6.2",
"ethr-did-resolver": "^5.0.4",
"expo": "~44.0.0",
"expo-barcode-scanner": "~11.2.0",
"expo-camera": "~12.1.2",
"expo-status-bar": "~1.2.0",
"express": "^4.17.3",
"firebase-admin": "^10.0.2",
"formik": "^2.2.9",
"http": "^0.0.1-security",
"jsonschema": "^1.4.0",
"moment": "^2.29.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-elements": "^3.4.2",
"react-native-permissions": "^3.3.1",
"react-native-qrcode-svg": "^6.1.2",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.10.1",
"react-native-svg": "12.1.1",
"react-native-web": "0.17.1",
"sqlite3": "^5.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"web-did-resolver": "^2.0.12",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/mocha": "^9.1.0",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"husky": "^7.0.4",
"mocha": "^9.2.0",
"typescript": "~4.3.5"
}
}