-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.63 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "react-placards",
"version": "1.0.2",
"description": "A component inspired from stripe's placards",
"homepage": "https://cheersmas.github.io/react-placards",
"main": "dist/react-placards.js",
"module": "dist/react-placards.esm.js",
"umd": "dist/react-placards.umd.js",
"keywords": [
"announcements",
"banners",
"cards",
"notifications",
"placards",
"react-banner",
"react-banners",
"react-cards",
"react-stacked-cards"
],
"files": [
"dist"
],
"repository": "https://github.com/cheersmas/react-notification.git",
"author": "cheersmas",
"license": "MIT",
"scripts": {
"start": "snowpack dev --polyfill-node",
"build": "snowpack build",
"eslint": "eslint .",
"deploy": "yarn build && gh-pages -d build",
"rollup": "rimraf ./dist && rollup -c",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"stylelint": "stylelint **/*.tsx",
"prettier": "prettier --write .",
"prettier:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"test": "jest -u"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier --write .",
"*.{js,ts,tsx}": "eslint --fix",
"*.tsx": "stylelint --fix"
},
"dependencies": {
"styled-components": "^5.2.1"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-react-refresh": "^2.4.0",
"@snowpack/plugin-typescript": "^1.2.0",
"@snowpack/web-test-runner-plugin": "^0.2.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.0.0",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/snowpack-env": "^2.3.2",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@web/test-runner": "^0.12.0",
"babel-jest": "^26.6.3",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^3.10.1",
"gh-pages": "^3.1.0",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rollup": "^2.38.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"snowpack": "^3.0.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"ts-jest": "^26.4.4",
"typescript": "^4.0.0"
}
}