-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
58
{
"name": "cryptochain",
"version": "1.0.0",
"description": "cryptochain | viq.app",
"main": "dist/bundle.js",
"author": "Tommy CodeBox",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest --watchAll",
"dev": "webpack --watch",
"dev:peer": "cross-env GENERATE_PEER_PORT='true' node .",
"start": "webpack"
},
"devDependencies": {
"@types/elliptic": "^6.4.12",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"@types/redis": "^2.8.22",
"@types/request": "^2.48.5",
"@types/uuid": "^8.0.0",
"cross-env": "^7.0.2",
"jest": "^26.0.1",
"nodemon-webpack-plugin": "^4.3.1",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"moduleNameMapper": {
"@/(.*)": "<rootDir>/$1"
},
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"dependencies": {
"elliptic": "^6.5.2",
"express": "^4.17.1",
"hex-to-binary": "^1.0.1",
"redis": "^3.0.2",
"request": "^2.88.2",
"uuid": "^8.1.0"
}
}