-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "personal-data-vault",
"version": "1.0.0",
"description": "Personal Data Vault powered by Arweave - A permanent personal data repository",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"wallet-setup": "ts-node scripts/wallet-setup.ts",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"arweave": "^1.14.0",
"arfs": "^1.0.0",
"express": "^4.18.2",
"graphql": "^16.8.1",
"apollo-server-express": "^3.13.0",
"dotenv": "^16.3.1",
"winston": "^3.11.0",
"typeorm": "^0.3.17",
"sqlite3": "^5.1.6",
"jsonwebtoken": "^9.0.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}