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
109 lines (109 loc) · 3.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "rpc_ts_chat",
"version": "1.0.0",
"description": "Real-time chat room example using rpc_ts",
"repository": "[email protected]:aiden/rpc_ts_chat.git",
"author": "Dashbot Ltd",
"license": "MIT",
"private": true,
"dependencies": {
"btreejs": "^0.3.0",
"chance": "^1.0.16",
"compression": "^1.0.3",
"express": "^4.16.3",
"fast-text-encoding": "^1.0.0",
"grpc-web-client": "^0.6.2",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.13",
"moment": "^2.14.1",
"node-jose": "^1.0.0",
"puppeteer": "^1.6.0-next.1532381444032",
"query-string": "^6.0.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-redux": "5.0.5",
"redux-thunk": "^2.3.0",
"rpc_ts": "^1.2.0",
"rxjs": "^6.3.2",
"screenfull": "^3.3.3",
"ts-node": "^4",
"tsconfig-paths": "3.7.0",
"typescript": "3.1.6"
},
"devDependencies": {
"@types/chance": "^1.0.1",
"@types/path-is-inside": "^1.0.0",
"@types/react-dom": "^16.8.3",
"@types/terser-webpack-plugin": "^1.2.1",
"@types/uuid": "^3.4.4",
"@babel/polyfill": "^7.0.0",
"@types/chai": "^4.0.0",
"@types/express": "^4.11.1",
"@types/fetch-mock": "^6.0.3",
"@types/lodash": "^4.14.106",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.47",
"@types/puppeteer": "^1.5.1",
"@types/query-string": "^5.1.0",
"@types/react": "^16.3.2",
"@types/react-redux": "^6.0.3",
"@types/sinon": "^2.3.7",
"@types/webpack-dev-server": "^3.1.1",
"chai": "3.5.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"fast-check": "^1.5.0",
"fetch-mock": "^6.5.0",
"mocha": "^4",
"node-sass": "^4.9.0",
"nyc": "^13.0.1",
"path-is-inside": "^1.0.2",
"postcss-loader": "^2.1.4",
"prettier": "^1.13.7",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"sinon": "^4.0.1",
"style-loader": "^0.20.3",
"terser-webpack-plugin": "^1.1.0",
"ts-loader": "^4.1.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"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",
"url-loader": "^1.0.1",
"webpack": "^4.4.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.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 '**/*.{test,it}.ts'",
"all": "yarn format:check && yarn lint && yarn ts && yarn web:build && yarn test",
"precommit": "lint-staged",
"web": "webpack-dev-server --config webpack.config",
"web:build": "webpack-cli -p --config webpack.config",
"back": "ts-node -r tsconfig-paths/register ./src/server",
"doc": "echo 'SKIPPED'",
"heroku-postbuild": "yarn web:build"
},
"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",
"gRPC-Web"
],
"engines": {
"node": "8.11.3"
}
}