-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "console-cartridge-contract",
"version": "0.3.0",
"description": "A pattern for pluggable Node architecture",
"files": [
"dist"
],
"main": "dist/index.js",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^0.26.0",
"dot-env": "^0.0.1",
"fast-xml-parser": "^4.0.11",
"http-errors": "^2.0.0",
"http-status-codes": "^2.2.0",
"lodash": "^4.17.21",
"unfuxml": "^2.0.0",
"uuid": "^8.3.2",
"yargs": "^17.5.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.183",
"@types/node": "^17.0.10",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"jest": "^27.5.1",
"jest-to-match-shape-of": "^1.3.2",
"prettier": "^2.7.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "^4.5.5"
},
"scripts": {
"build:dist": "yarn clean && yarn lint && tsc --project tsconfig.dist.json",
"build": "yarn lint && tsc",
"clean:reset": "rm -rf node_modules && yarn",
"clean": "rm -rf dist",
"format": "prettier --check ./src/**",
"format:fix": "prettier --write ./src/**",
"lint:fix": "eslint --fix './src/**/*.ts'",
"fix": "yarn run format:fix && yarn run lint:fix",
"lint": "eslint './src/**/*.ts'",
"test": "jest -i",
"test:noc": "jest -i --collectCoverage=false"
}
}