This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.06 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "rpc_ts_aws_cognito",
"version": "1.0.0",
"description": "Using AWS Cognito with rpc_ts",
"repository": "git@github.com:aiden/rpc_ts_aws_cognito.git",
"author": "Hadrien Chauvin",
"license": "MIT",
"private": true,
"dependencies": {
"@types/uuid": "^3.4.4",
"aws-sdk": "^2.395.0",
"compression": "^1.0.3",
"express": "^4.16.3",
"grpc-web-client": "^0.6.2",
"io-ts": "^1.8.2",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.14.1",
"node-jose": "^1.0.0",
"rpc_ts": "^1.2.0",
"ts-node": "^4",
"tsconfig-paths": "3.7.0",
"typescript": "3.1.6",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/polyfill": "^7.0.0",
"@types/chai": "^4.0.0",
"@types/chance": "^1.0.1",
"@types/express": "^4.11.1",
"@types/fetch-mock": "^6.0.3",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.47",
"@types/sinon": "^2.3.7",
"chai": "3.5.0",
"chance": "^1.0.18",
"mocha": "^4",
"node-sass": "^4.9.0",
"nyc": "^13.0.1",
"prettier": "^1.13.7",
"rimraf": "^2.6.2",
"sinon": "^4.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.13.0",
"tslint-config-standard": "^7.0.0",
"tslint-language-service": "^0.9.8",
"tslint-no-circular-imports": "^0.6.1"
},
"scripts": {
"ts": "tsc -p tsconfig.json --noEmit",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write --ignore-path .gitignore '**/*.ts'",
"format:check": "prettier -l --list-different --ignore-path .gitignore '**/*.ts'",
"test": "mocha --exit -r ts-node/register -r tsconfig-paths/register -r src/__tests__/setup '**/*.{test,it}.ts'",
"all": "yarn format:check && yarn lint && yarn ts && yarn test",
"precommit": "lint-staged",
"doc": "echo 'SKIPPED'"
},
"lint-staged": {
"{./*,typescript/**/*}.{js,jsx,ts,tsx,css,scss,md,json}": "prettier -l",
"*.{ts,tsx}": "tslint -c tslint.json"
},
"sideEffects": false,
"keywords": [
"typescript",
"RPC",
"API",
"isomorphic",
"rpc_ts"
],
"engines": {
"node": "8.11.3"
}
}