-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
{
"name": "react-context-modals",
"version": "3.0.2",
"description": "Add modals to your React app via the context API",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"watch": "cross-env NODE_ENV=development node_modules/.bin/webpack --watch --progress --hide-modules",
"dev": "cross-env NODE_ENV=development node_modules/.bin/webpack",
"build": "cross-env NODE_ENV=production node_modules/.bin/webpack",
"analyze": "cross-env NODE_ENV=production ANALYZE=true node_modules/.bin/webpack",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"modals",
"context"
],
"author": "Carwyn Stephen",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-webpack5": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass-loader": "^16.0.2",
"source-map-loader": "^4.0.1",
"storybook": "^7.5.3",
"ts-loader": "^9.5.1",
"tsc": "^2.0.4",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/huwcarwyn/react-context-modals.git"
},
"dependencies": {
"sass": "^1.79.4"
}
}