forked from underdog-tech/react-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
{
"name": "@pinwheel/react-modal",
"version": "2.3.12",
"description": "React package for Pinwheel modal",
"author": "roscioli",
"license": "MIT",
"repository": "underdog-tech/react-modal",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint src --ext .ts,.tsx",
"start": "cd example && npm install && npm run start",
"test": "cd example && npm install && npm run test",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "^16.0.0 ||^17.0.2|| ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@pinwheel/eslint-config": "^1.0.0-alpha.2",
"@rollup/plugin-typescript": "^10.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.38",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"cross-env": "^7.0.2",
"css-loader": "^6.7.2",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^3.5.0",
"rollup-plugin-import-css": "^3.1.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"files": [
"dist"
]
}