-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.35 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.35 KB
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
{
"name": "@ps-aux/swagger-codegen",
"version": "18.0.0",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel --extensions '.ts,.js' src -d lib src",
"pub": "npm publish --access public",
"test": "jest src",
"run-on-api": "node ./lib/bin/gen-model-from-swagger.js test/testSchema.json test/build/run-on-api test/customTypeDefs.js",
"typecheck": "tsc --noEmit",
"format": "prettier \"**/*.{js,ts,tsx}\" --write",
"lint": "eslint '**/*.{js,ts,tsx}' --fix",
"update-deps": "ncu --upgrade"
},
"repository": {
"type": "git"
},
"files": [
"lib",
"src"
],
"typings": "src/types.d.ts",
"bin": {},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.20.0",
"flat": "^5.0.2",
"prettier": "^1.17.1",
"ramda": "^0.27.1",
"underscore": "^1.11.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-stage-2": "^7.8.3",
"@babel/preset-typescript": "^7.10.4",
"@types/axios": "^0.14.0",
"@types/jest": "^26.0.14",
"@types/joi": "^14.3.4",
"@types/node": "^14.11.5",
"@types/ramda": "^0.27.20",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.0",
"babel-plugin-module-resolver": "^4.0.0",
"core-js": "^3.6.5",
"deep-diff": "^1.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^26.5.0",
"jest-expect-message": "^1.0.2",
"jest-extended": "^0.11.5",
"lint-staged": "^10.4.0",
"lodash": "^4.17.20",
"npm-check-updates": "^9.0.4",
"prettier": "^2.1.2",
"shelljs": "^0.8.4",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}