forked from essence-community/core-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.24 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": "ungate",
"version": "2.7.1",
"description": "Шлюз",
"private": true,
"engines": {
"yarn": ">=1.13.0",
"node": ">=14.0.0"
},
"scripts": {
"prettier": "prettier --write \"{,!(node_modules|dist|build|bin|libs|coverage)/**/}*.{js,jsx,ts,tsx,json}\"",
"build": "gulp all",
"clear": "rimraf bin",
"pre-commit": "yarn prettier && yarn build",
"tslint:server": "tslint --project server/tsconfig.json",
"tslint:fix:server": "tslint --project server/tsconfig.json --fix",
"tslint:plugininf": "tslint --project plugininf/tsconfig.json",
"tslint:fix:plugininf": "tslint --project plugininf/tsconfig.json --fix",
"tslint:fix:all": "gulp tslint:fix:all"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit"
}
},
"author": "Ivan Artemov ([email protected])",
"license": "MIT",
"workspaces": [
"server",
"plugininf",
"contexts/*",
"plugins/*",
"providers/*",
"schedulers/*",
"events/*",
"libs/*"
],
"devDependencies": {
"@essence-community/eslint-config-react": "^2.2.0",
"@types/async": "^3.2.1",
"@types/bcrypt-nodejs": "0.0.31",
"@types/body-parser": "^1.17.0",
"@types/compression": "1.7.0",
"@types/dotenv": "^8.2.0",
"@types/errorhandler": "1.5.0",
"@types/es6-shim": "^0.31.39",
"@types/eslint": "^7.2.6",
"@types/gulp": "^4.0.5",
"@types/http-server": "^0.10.0",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.118",
"@types/node": "^14.14.31",
"@types/request": "^2.48.1",
"@types/rimraf": "^3.0.0",
"copy-dir": "^0.4.0",
"eslint": "^7.21.0",
"gulp": "^4.0.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^5.1.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/glob": "^7.1.4",
"glob": "^7.2.0"
}
}