-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.13 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
68
69
70
71
72
73
74
75
{
"name": "@ktsstudio/mediaproject-stores",
"version": "4.0.0",
"author": "KTS Studio",
"license": "MIT",
"description": "Package with basic MobX stores for mediaprojects",
"keywords": [
"mobx",
"stores"
],
"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",
"clear": "rm -rf ./dist",
"build": "yarn clear && tsc --module es6 --target es6 --outDir dist --declarationDir dist/types",
"build:cjs": "yarn clear && tsc --module commonjs --target es5 --outDir dist --declarationDir dist/types",
"precommit": "yarn run lint && yarn run codestyle"
},
"lint-staged": {
"*.{ts,js}?(x)": [
"yarn run lint",
"yarn run codestyle"
]
},
"devDependencies": {
"@ktsstudio/mediaproject-utils": "^6.0.0",
"@sentry/react": "^6.19.7",
"@types/node": "^16.4.5",
"@types/react": ">=17",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"axios": "^0.24.0",
"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",
"mobx": "^6.3.10",
"prettier": "^2.2.1",
"react": ">=17",
"typescript": "^4.1.3"
},
"peerDependencies": {
"@ktsstudio/mediaproject-utils": "^6.0.0",
"@sentry/react": "^6.19.7",
"axios": "^0.24.0",
"mobx": "^6.3.10",
"react": ">=17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ktsstudio/mediaproject-stores"
},
"private": false,
"bugs": {
"url": "https://github.com/ktsstudio/mediaproject-stores/issues"
},
"homepage": "https://github.com/ktsstudio/mediaproject-stores#readme",
"files": [
"dist/",
"package.json",
"README.md",
"CHANGELOG.md"
],
"dependencies": {
"dayjs": "^1.11.8"
}
}