-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
{
"name": "arbox-api",
"version": "0.0.0-development",
"description": "an api for arbox app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Pavel 'PK' Kaminsky <kaminsky.pavel@gmail.com> (http://www.pavel-kaminsky.com)",
"license": "ISC",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --rs src/dev.ts",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint src/**/*.ts --fix",
"lint:prettier": "prettier --config .prettierrc --write src/**/*.{ts,js,json}",
"test": "vitest --passWithNoTests",
"test:watch": "vitest --watch",
"prepush": "npm run build",
"prepublish": "yarn build",
"semantic-release": "semantic-release",
"prepare": "husky install",
"upgrade-latest": "yarn upgrade-interactive --latest"
},
"homepage": "www.pavel-kaminsky.com",
"dependencies": {
"axios": "^0.21",
"dotenv": "^16.0.3",
"lodash": "^4.17.15",
"moment": "^2.22.2",
"query-string": "^7.1.1"
},
"devDependencies": {
"@types/dotenv": "8.2.0",
"@types/lodash": "4.14.190",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"commitizen": "^4.2.3",
"cross-env": "7.0.3",
"eslint": "8.28.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "2.8.0",
"semantic-release": "^19.0.5",
"semantic-release-cli": "^5.4.3",
"ts-node-dev": "2.0.0",
"typescript": "4.9.3",
"vitest": "^0.25.3"
},
"repository": {
"type": "git",
"url": "https://github.com/kaminskypavel/arbox-api.git"
},
"bugs": {
"url": "https://github.com/kaminskypavel/arbox-api/issues"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}