-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.83 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.83 KB
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": "react-alert-system",
"version": "0.0.0-development",
"description": "Library that manages alerts using reactJS",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-lib": "npm run prebuild && tsc && rollup -c --environment INCLUDE_DEPS,BUILD:production",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check src",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"check-types:watch": "npm run check-types -- --watch",
"format": "prettier --write .",
"prepare": "husky install",
"test": "jest --env=jsdom",
"check-all": "npm run check-format && npm run check-lint && npm run check-types",
"semantic-release": "semantic-release",
"deploy:gh-pages": "gh-pages -d ./storybook-static -b gh-pages"
},
"keywords": [
"alert",
"react",
"reactjs",
"typescript",
"system"
],
"author": "adria marzo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/react": "^6.3.12",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.34",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.1",
"gh-pages": "^3.2.3",
"husky": "^7.0.0",
"jest": "^27.5.1",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.59.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^18.0.0",
"styled-components": "^5.3.3",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.ts"
],
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "https://github.com/adriamarzo/react-alert-system"
}
}