This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
68 lines (68 loc) · 2.13 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": "storybook-host",
"version": "5.2.0",
"description": "A React Storybook decorator with helpful display options for hosting components under test",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"ui": "start-storybook -p 3000 -c ./.storybook -s ./static",
"start": "npm run build && npm run ui",
"test": "./node_modules/mocha/bin/mocha --require ts-node/register --watch-extensions ts,tsx 'src/**/*.test.ts{,x}'",
"tdd": "npm run test -- --reporter min --watch",
"prettier": "node ./node_modules/prettier/bin-prettier all --write 'src/**/*.ts{,x}'",
"tslint": "node ./node_modules/tslint/bin/tslint 'src/**/*.ts{,x}' --format verbose --fix $@",
"lint": "npm run prettier && npm run tslint",
"build": "rm -rf ./lib && node ./node_modules/typescript/bin/tsc",
"prepare": "npm run lint && npm test && npm run build"
},
"dependencies": {
"@storybook/addons": "^5.1.9",
"@types/tinycolor2": "^1.4.1",
"glamor": "^2.20.40",
"ramda": "^0.25.0",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@emotion/core": "10.0.14",
"@storybook/react": "^5.1.9",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.10",
"@types/ramda": "^0.26.0",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/storybook__react": "^4.0.2",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.6",
"webpack": "^4.23.1"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/philcockfield/storybook-host"
},
"keywords": [
"react",
"react-storybook",
"helper",
"ui"
],
"author": {
"name": "Phil Cockfield",
"email": "[email protected]",
"url": "https://github.com/philcockfield/modules"
},
"license": "MIT"
}