forked from fonoster/fonoster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.25 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
{
"name": "root",
"private": true,
"license": "MIT",
"scripts": {
"make": "npm i rimraf && npm run clean && npm i && npm run bootstrap && npm run build && npm run test",
"bootstrap": "lerna bootstrap --no-ci --hoist",
"test": "cross-env NODE_ENV=dev nyc --reporter=lcov mocha -r ts-node/register mods/**/*.unit.test.ts --exit",
"integration": "cross-env NODE_ENV=dev nyc --reporter=lcov mocha --timeout 220000 -r ts-node/register mods/**/*.int.test.ts --exit",
"build": "lerna run build",
"clean": "rimraf .nyc_output **/*/tsconfig.tsbuildinfo dist coverage **/*/dist **/*/node_modules \"node_modules/!(rimraf|.bin)\"",
"lint": "eslint mods --ext .ts --fix",
"format": "prettier --write mods",
"check-types": "tsc --noEmit",
"start": "cross-env NODE_ENV=dev nodemon .scripts/services",
"start:dispatcher": "cross-env NODE_ENV=dev nodemon .scripts/dispatcher",
"gen:protos": "./.scripts/gen_code_proto.sh",
"gen:docs": "node ./.scripts/gen_docs.js",
"audit": "lerna-audit",
"bump:version": "rimraf mods/**/.lerna-changed-buster-* && lerna exec -- touch .lerna-changed-buster-$RANDOM"
},
"nodemonConfig": {
"watch": [
"./mods"
],
"ext": "ts",
"exec": "ts-node",
"ignore": "**/*.d.ts"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^3.3.1",
"grpc_tools_node_protoc_ts": "5.2.2",
"grpc-tools": "1.11.1",
"husky": "^6.0.0",
"jsdoc-to-markdown": "^7.0.1",
"jsonfile": "^6.1.0",
"lerna": "^4.0.0",
"lerna-audit": "^1.3.3",
"mocha": "^9.2.1",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.24.0",
"colors": "^1.4.0"
}
}