forked from luismayta/visanetgo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.07 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
{
"keywords": [],
"name": "@equipindustry/visanetgo",
"private": true,
"description": "visanetgo project",
"version": "0.0.0",
"repository": "ssh://[email protected]/equipindustry/visanetgo.git",
"author": "Luis Mayta <[email protected]>",
"license": "GPL",
"scripts": {
"clean": "rimraf dist .next out .build",
"clean:all": "yarn clean node_modules",
"lint": "eslint -c .eslintrc.js ./ --ext .js,.jsx,.mjs,.d.ts,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"prettier:lint": "prettier '**/*.{js?(on),ts?(x),scss,md?(x),y?(a)ml,graphql,less}' --write=false --list-different",
"prettier:fix": "yarn prettier:lint --write=true",
"build": "node_modules/.bin/tsc -p ./tsconfig.json",
"semantic-release": "semantic-release",
"precommit": "lint-staged"
},
"publishConfig": {
"access": "private"
},
"engines": {
"node": ">=12"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.10.2"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@equipindustry/eslint-config": "^0.3.4",
"@equipindustry/prettierrc": "^0.2.0",
"@equipindustry/tsconfig": "^0.1.0",
"@types/dotenv": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-root-import": "^6.5.0",
"eslint": "<=6.8.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.10",
"prettier": "^2.0.5",
"prettier-tslint": "^0.4.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.8",
"shell-quote": "^1.7.2",
"typescript": "^3.9.5"
}
}