-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "PI-server",
"version": "0.0.0",
"description": "pi server",
"engines": {
"node": ">= 16.13"
},
"devDependencies": {
"@jest-mock/express": "^1.4.5",
"@types/express": "^4.17.13",
"@types/jest": "~27.0.2",
"@types/node": "~16.11.6",
"@typescript-eslint/eslint-plugin": "~5.7.0",
"@typescript-eslint/parser": "~5.7.0",
"eslint": "~8.4.1",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~25.3.0",
"jest": "~27.4.4",
"nodemon": "^2.0.15",
"prettier": "~2.5.1",
"rimraf": "~3.0.2",
"ts-jest": "~27.1.1",
"tsutils": "~3.21.0",
"typescript": "~4.5.3"
},
"scripts": {
"start": "nodemon src/server.ts",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage --watchAll=true ",
"test:watch": "jest --watch"
},
"author": "Lovish Arora",
"license": "ISC",
"dependencies": {
"@polkadot/api": "^9.11.3",
"@polkadot/keyring": "^10.2.6",
"@polkadot/util": "^10.2.6",
"@polkadot/util-crypto": "^10.2.6",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"joi": "^17.5.0",
"peaq-did-proto-js": "^1.0.0",
"socket.io": "^4.5.4",
"ts-node": "^10.4.0",
"tslib": "~2.3.1"
},
"volta": {
"node": "16.13.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.7"
}
}