This repository has been archived by the owner on Aug 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
63 lines (63 loc) · 2.12 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
{
"name": "storybook-addon-jest",
"version": "0.0.1",
"description": "React storybook addon that show component jest report",
"main": "dist/index.js",
"homepage": "https://github.com/renaudtertrais/storybook-addon-jest",
"bugs": "https://github.com/renaudtertrais/storybook-addon-jest/issues",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/renaudtertrais/storybook-addon-jest"
},
"author": "",
"files": [
"dist",
"styles.js",
"register.js"
],
"scripts": {
"test:example": "jest example --json --outputFile=example/.jest-test-results.json",
"clean:storybook": "rm -rf build",
"prebuild:storybook": "npm run clean:storybook",
"build:storybook": "build-storybook -c example/.storybook -o build/",
"storybook": "cross-env NODE_ENV=development start-storybook -p 3001 -c example/.storybook",
"prebuild": "npm run clear",
"build": "cross-env NODE_ENV=production babel -d ./dist ./src",
"start": "./node_modules/.bin/cross-env NODE_ENV=production babel -d ./dist ./src && npm run test:example || true && npm run build:storybook && ./node_modules/.bin/serve ./build -p $PORT",
"prepublish": "npm run build",
"clear": "rm -rf ./dist"
},
"dependencies": {},
"devDependencies": {
"@storybook/addon-options": "^3.2.14",
"@storybook/react": "^3.2.14",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.7",
"enzyme": "^3.1.1",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.7.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"serve": "^6.4.1",
"style-loader": "^0.19.0",
"upath": "^1.0.4"
},
"peerDependencies": {
"@storybook/addons": "^3.2.14",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"license": "MIT"
}