-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.62 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
{
"name": "@jswork/react-modal-manager",
"homepage": "https://js.work",
"version": "1.2.15",
"description": "A cool modal manager for react.",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/main.d.ts",
"scripts": {
"dev": "vite",
"clean": "rimraf dist",
"predocs": "node build/markdown.js",
"build": "npm run clean && rollup -c",
"docs": "tsc && vite build",
"docs:serve": "vite preview",
"test": "jest",
"test:watch": "jest --watch",
"pages": "github-cli -p",
"release": "release-it"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@jswork/event-mitt": "^2.0.9",
"@jswork/next": "^1.2.6",
"@jswork/next-replace-in-file": "^1.0.0",
"@jswork/next-rollup-banner": "^1.0.12",
"@jswork/react-markdown-props": "^1.0.1",
"@jswork/scan-modules": "^1.0.17",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/react-test-renderer": "^17.0.0",
"@types/styled-components": "^5.1.9",
"@vitejs/plugin-react-refresh": "^1.3.1",
"babel-loader": "^8.2.2",
"core-js": "^3.8.2",
"css-loader": "^5.0.1",
"indent-string": "^4.0.0",
"jest": "^27.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-scripts-ts": "^3.1.0",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.36.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"sass": "^1.47.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"styled-components": "^5.3.0",
"ts-jest": "^27.1.1",
"typescript": "^4.1.3",
"vite": "^4",
"vite-plugin-pwa": "^0.7.3"
},
"peerDependencies": {
"@jswork/event-mitt": "*",
"classnames": "*",
"lodash": "*"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"react",
"modal",
"command",
"manager",
"nx",
"use-modal"
],
"dependencies": {
"object-path": "^0.11.8"
}
}