This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.14 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
{
"name": "meta-cms-worker-git",
"version": "1.0.1",
"description": "CMS Worker for Git",
"author": "Meta Network <[email protected]>",
"private": true,
"license": "MIT License",
"main": "dist/main.js",
"engines": {
"node": ">=14 <15"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "ts-node src/main.ts",
"start:dev": "node-dev --respawn src/main.ts",
"start:debug": "DEBUG=* node-dev --respawn src/main.ts",
"start:debug:docker": "DEBUG=* ts-node src/main.ts",
"start:prod": "NODE_ENV='production' node --enable-source-maps dist/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "ava",
"test:watch": "ava --watch",
"test:coverage": "c8 ava",
"prepare": "husky install"
},
"dependencies": {
"@metaio/worker-common": "1.7.6",
"@metaio/worker-model": "1.7.6",
"cron": "^1.8.2",
"dotenv-flow": "^3.2.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"semver": "^7.3.5",
"superagent": "^6.1.0",
"winston": "^3.3.3",
"winston-loki": "^6.0.1",
"yaml": "^2.0.0-8"
},
"devDependencies": {
"@types/cron": "^1.7.3",
"@types/dotenv-flow": "^3.2.0",
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.7.1",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"ava": "^3.15.0",
"c8": "^7.10.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"node-dev": "^7.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"ava": {
"files": [
"test/**/*"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}