generated from a-type/react-typescript-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.91 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
{
"name": "calendar-blocks",
"version": "0.3.0",
"description": "",
"files": [
"dist",
"dist-esm"
],
"main": "./dist/index.js",
"module": "./dist-esm/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --bail",
"build:cjs": "tsc",
"build:esm": "tsc -m es6 --outDir dist-esm",
"watch:cjs": "tsc --watch",
"watch:esm": "tsc -m es6 --outDir dist-esm --watch",
"prepublishOnly": "npm run build:cjs && npm run build:esm",
"release": "npm publish --access public",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook -o docs/storybook",
"typedoc": "typedoc --options typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-type/calendar-blocks.git"
},
"keywords": [],
"author": {
"name": "Grant Forrest",
"email": "gaforres@gmail.com",
"url": "https://github.com/a-type"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/a-type/calendar-blocks/issues"
},
"homepage": "https://github.com/a-type/calendar-blocks#readme",
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@stitches/react": "^1.2.6",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.19",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"babel-loader": "^8.2.3",
"jest": "^27.4.3",
"prettier": "^2.5.1",
"react": "^17.0.2",
"typedoc": "0.22.10",
"typescript": "^4.5.2"
}
}