-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.45 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
{
"name": "@entrylabs/modal",
"version": "1.4.3",
"description": "",
"main": "lib/component.js",
"module": "lib/component.js",
"jsnext:main": "lib/component.js",
"type": "module",
"scripts": {
"dev": "rollup -cw",
"build:css": "cross-env NODE_ENV=production node exportStyle",
"build:script": "cross-env NODE_ENV=production rollup -c",
"build": "rimraf dist&&rimraf lib&&npm run build:script&&npm run build:css",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"engines": {
"node": ">=16.x",
"npm": "=>8.x"
},
"keywords": [
"entry",
"modal"
],
"repository": {
"type": "git",
"url": "git+https://github.com/entrylabs/entry-modal.git"
},
"author": "kimorkim",
"license": "MIT",
"bugs": {
"url": "https://github.com/entrylabs/entry-modal/issues"
},
"sideEffects": false,
"homepage": "https://github.com/entrylabs/entry-modal#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
"@babel/plugin-transform-object-assign": "^7.14.5",
"@babel/plugin-transform-regenerator": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^5.0.0",
"caniuse-lite": "^1.0.30001460",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"postcss": "^8.4.21",
"postcss-base64": "^0.7.1",
"postcss-loader": "^3.0.0",
"postcss-prefixer": "^2.1.3",
"rollup": "^3.18.0",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.58.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.3.0",
"url-loader": "^3.0.0"
},
"dependencies": {
"lodash-es": "^4.17.21",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}