This repository was archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.51 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.51 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
{
"name": "prototype-services",
"version": "0.18.0",
"description": "Auxiliary services for the KILT prototype",
"author": "botlabs",
"license": "BSD-4-Clause",
"scripts": {
"build": "tsc -b ./tsconfig.build.json && cp -r src/assets dist",
"format": "prettier --write \"src/**/*.ts\"",
"start": "export NODE_ENV=dev-local; export SECRET=s3cr3t; export FAUCET_ACCOUNT=0xcdfd6024d2b0eba27d54cc92a44cd9a627c69b2dbda15ed7e58085425119ae03; ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"start:provided-env": "node dist/main.js",
"start:prod": "export NODE_ENV=prod; node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@godaddy/terminus": "^4.6.0",
"@kiltprotocol/chain-helpers": "^0.22.0",
"@kiltprotocol/config": "^0.22.0",
"@kiltprotocol/core": "^0.22.0",
"@kiltprotocol/messaging": "^0.22.0",
"@kiltprotocol/types": "^0.22.0",
"@kiltprotocol/utils": "^0.22.0",
"@nestjs/common": "^7.6.6",
"@nestjs/core": "^7.6.6",
"@nestjs/mongoose": "^7.2.2",
"@nestjs/platform-express": "^7.6.6",
"@nestjs/terminus": "^7.0.1",
"dotenv": "^8.2.0",
"mongoose": "^5.11.15",
"reflect-metadata": "^0.1.12",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"typescript": "^4.1.3",
"typescript-optional": "^2.0.1"
},
"devDependencies": {
"@nestjs/testing": "^7.6.6",
"@types/express": "^4.16.0",
"@types/jest": "^26.0.13",
"@types/node": "^10.7.1",
"@types/supertest": "^2.0.5",
"jest": "26.4.2",
"mongodb-memory-server": "^6.6.3",
"nodemon": "^1.18.3",
"prettier": "^1.14.2",
"supertest": "^3.1.0",
"ts-jest": "^26.3.0",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.5.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-plugin-prettier": "^2.0.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"preset": "ts-jest/presets/js-with-ts",
"transformIgnorePatterns": [
"/node_modules/(?!@polkadot|@babel/runtime/helpers/esm/)"
],
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.spec.json"
}
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}