-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
112 lines (112 loc) · 3.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-stick",
"version": "0.0.0-development",
"description": "React component to stick a portaled node to an anchor node",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib/*",
"es/*"
],
"repository": "[email protected]:signavio/react-stick.git",
"author": "Jan-Felix Schwarz <[email protected]>",
"license": "MIT",
"scripts": {
"commit": "commit",
"prebuild": "npm run clean",
"build": "tsc -p ./src/tsconfig.json --outdir ./es && tsc -p ./src/tsconfig.json --module commonJS --outdir ./lib ",
"prepublishOnly": "npm run build",
"build-demo": "vite --config demo/vite.config.ts build",
"clean": "rimraf tests/coverage tests/.nyc_output es lib build",
"lint": "eslint --max-warnings=0 --ext .ts --ext .tsx src tests demo/src",
"lint:fix": "npm run lint -- --fix",
"prenow-build": "npm run build",
"now-build": "npm run build-demo",
"start": "vite --config demo/vite.config.ts",
"semantic-release": "semantic-release",
"semantic-release-preview": "semantic-release-github-pr",
"test": "cypress run --component --config-file ./tests/cypress.config.ts",
"test:ssr": "vitest --config=tests/vitest.config.ts",
"test:open": "cypress open --component --config-file ./tests/cypress.config.ts --browser electron",
"prepare": "husky install"
},
"dependencies": {
"@types/invariant": "^2.2.35",
"invariant": "^2.2.4",
"requestidlecallback": "^0.3.0",
"substyle": "^9.4.1"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@commitlint/prompt-cli": "19.3.1",
"@cypress/code-coverage": "3.12.39",
"@cypress/react": "8.0.1",
"@cypress/vite-dev-server": "5.0.7",
"@testing-library/cypress": "8.0.7",
"@types/react": "16.14.60",
"@types/react-dom": "16.9.24",
"@vitejs/plugin-react": "2.2.0",
"@vitest/coverage-v8": "^1.6.0",
"condition-circle": "2.0.2",
"core-js": "3.37.1",
"cypress": "11.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "4.2.1",
"glamor": "2.20.40",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "2.8.8",
"react": "16.14.0",
"react-dom": "16.14.0",
"rimraf": "5.0.7",
"semantic-release": "23.0.8",
"substyle-glamor": "4.1.2",
"typescript": "5.4.5",
"vite": "3.2.10",
"vite-plugin-istanbul": "5.0.0",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"browserslist": [
"chrome >= 50",
"firefox >= 52",
"safari >= 10",
"ie >= 11"
],
"release": {
"branch": "master",
"branches": [
"master"
],
"verifyConditions": "condition-circle"
},
"engines": {
"node": ">=16.11",
"npm": ">=8.x"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --max-warnings 0 --fix"
],
"*.{json,md,yaml,yml}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"overrides": {
"ramda": "0.29.1",
"npm": "10.5.0",
"semver": "7.6.2",
"find-versions": {
"semver-regex": "3.1.4"
}
}
}