-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
59
60
61
62
{
"name": "smartchain",
"version": "1.0.0",
"description": "smartchain | viq.app",
"main": "dist/bundle.js",
"author": "Tommy CodeBox",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest --watchAll",
"dev": "webpack --watch",
"dev:peer": "node . --peer",
"start": "webpack",
"preapi-test": "tsc",
"api-test": "node build/api-test.js"
},
"dependencies": {
"axios": "^0.21.1",
"elliptic": "^6.5.3",
"express": "^4.17.1",
"js-sha3": "^0.8.0",
"lodash": "^4.17.20",
"redis": "^3.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/elliptic": "^6.4.12",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.167",
"@types/node": "^14.14.20",
"@types/redis": "^2.8.28",
"@types/uuid": "^8.3.0",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"nodemon-webpack-plugin": "^4.3.2",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1",
"webpack-node-externals": "^2.5.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"moduleNameMapper": {
"@/(.*)": "<rootDir>/$1"
},
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}