-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.06 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
{
"name": "zeit-toast-clone",
"version": "0.0.1",
"license": "MIT",
"author": "Ricardo Q. Bazan",
"main": "dist/index.js",
"module": "dist/zeit-toast-clone.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"styles.css"
],
"scripts": {
"build": "dts build",
"check:lint": "dts lint",
"check:types": "tsc --noEmit",
"fix:format": "yarn prettier --write",
"fix:lint": "dts lint --fix",
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,ts,tsx}\"",
"size": "size-limit",
"storybook": "start-storybook",
"test:static": "run-p check:*",
"test:unit": "dts test --passWithNoTests",
"prepare": "husky install"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"dts lint --fix"
]
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.19",
"@storybook/addons": "^6.4.19",
"@storybook/react": "^6.4.19",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/styled-components": "^5.1.24",
"babel-loader": "^8.2.4",
"dts-cli": "^1.4.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-spring": "^8.0.0",
"size-limit": "^7.0.8",
"styled-components": "^5.3.5",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"react-spring": "^8.0.0"
},
"engines": {
"node": ">=14"
},
"size-limit": [
{
"path": "dist/zeit-toast-clone.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/zeit-toast-clone.esm.js",
"limit": "10 KB"
}
]
}