-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
{
"name": "react-typescript-library-template",
"version": "1.0.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/react-typescript-library-template.git"
},
"keywords": [],
"author": {
"name": "Grant Forrest",
"email": "[email protected]",
"url": "https://github.com/a-type"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/a-type/react-typescript-library-template/issues"
},
"homepage": "https://github.com/a-type/react-typescript-library-template#readme",
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@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.11.1",
"@testing-library/react": "^10.4.7",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.23",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"typedoc": "0.17.0-3",
"typedoc-plugin-internal-external": "^2.2.0",
"typescript": "^3.9.7"
},
"dependencies": {}
}