-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.94 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.94 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
{
"name": "@tager/web-core",
"version": "0.3.35",
"author": "Ivan Saranchonkau",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/web-core.esm.js",
"types": "dist/main.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"emit-declarations": "tsc --project tsconfig.json --emitDeclarationOnly",
"build-js": "rollup -c rollup.config.js",
"build-package": "yarn build-js && yarn emit-declarations",
"prepare": "husky install"
},
"dependencies": {
"cookie": "^0.4.1",
"form-data": "^4.0.0",
"js-cookie": "3.0.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"tua-body-scroll-lock": "^1.2.1",
"typed-contracts": "^3.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/js-cookie": "^3.0.1",
"@types/lodash": "^4.14.177",
"@types/lodash-es": "^4.17.5",
"@types/node": "16.11.11",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"cross-env": "^7.0.3",
"esbuild": "^0.14.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"next": "^12.0.4",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.60.2",
"rollup-plugin-esbuild": "^4.7.2",
"typescript": "^4.5.2"
},
"peerDependencies": {
"next": "^11.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"prettier": {
"singleQuote": true
},
"publishConfig": {
"access": "public"
}
}