-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "@ktsstudio/mediaproject-ok",
"version": "1.0.6",
"author": "KTS Studio",
"license": "MIT",
"description": "Package with utils for OK apps",
"keywords": [
"odnoklassniki",
"fapi"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"lint": "eslint src --fix",
"codestyle": "prettier src --write \"*.{ts,js}?(x)\"",
"tsc-check": "tsc --skipLibCheck --noEmit --project tsconfig.json",
"build": "tsc --module es6 --target es6 --outDir dist --declarationDir dist/types",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist --declarationDir dist/types",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,js}?(x)": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^16.4.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.31.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@ktsstudio/mediaproject-utils": "^2.0.0",
"axios": "^0.21.1"
}
}