-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.24 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
{
"name": "noti-react",
"version": "0.1.0",
"description": "Simple notification component",
"main": "dist/Notification.js",
"devDependencies": {
"@storybook/addon-info": "^4.1.18",
"@storybook/addon-knobs": "7.0.2",
"@storybook/react": "7.4.6",
"@storybook/storybook-deployer": "^2.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-react-css-modules": "^0.0.0",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"css-loader": "6.8.1",
"enzyme": "^3.6.0",
"@cfaester/enzyme-adapter-react-18": "0.7.1",
"eslint": "8.51.0",
"eslint-plugin-react": "^7.11.1",
"ignore-styles": "^5.0.1",
"jest": "29.7.0",
"jest-css-modules": "2.1.0",
"pre-commit": "^1.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"storybook-addon-jsx": "7.3.14"
},
"storybook-deployer": {
"gitUsername": "ODudek",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook"
},
"scripts": {
"test": "jest",
"dev": "start-storybook -p 6006 -c .storybook",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"lint:fix": "eslint ./ --cache --ignore-pattern .gitignore --fix",
"storybook:build": "build-storybook -c .storybook -o .out",
"storybook:deploy": "storybook-to-ghpages",
"deploy": "npm run storybook:build && npm run storybook:deploy -- --existing-output-dir=.out",
"transpile": "babel src -d dist && node ./copyFiles.js",
"prepublishOnly": "npm run lint && npm run transpile"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ODudek/noti-react.git"
},
"keywords": [
"react",
"notification",
"notify",
"react-component",
"react-notification",
"alert"
],
"files": [
"LICENSE",
"README.md",
"dist/",
"package.json",
"index.d.ts"
],
"author": "ODudek [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ODudek/noti-react/issues"
},
"homepage": "https://github.com/ODudek/noti-react#readme"
}