-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
159 lines (159 loc) · 5.68 KB
/
Copy pathpackage.json
File metadata and controls
159 lines (159 loc) · 5.68 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "@matt-dunn/react-wireframes",
"version": "2.0.7",
"source": "src/Wireframes/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/src/Wireframes/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/matt-dunn/react-wireframes.git"
},
"files": [
"dist",
"src/Wireframes"
],
"author": "Matt Dunn",
"homepage": "https://matt-dunn.github.io/",
"description": "React component to annotate your components — useful for prototypes and proof of concepts",
"keywords": [
"react",
"wireframe",
"typescript",
"prototype",
"prototyping",
"poc",
"mockup"
],
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@emotion/core": "^10.0.28",
"@emotion/css": "^10.0.27",
"@emotion/styled": "^10.0.27",
"@loadable/babel-plugin": "^5.12.0",
"@storybook/addon-a11y": "^5.3.17",
"@storybook/addon-docs": "^5.3.14",
"@storybook/addon-knobs": "^5.3.17",
"@storybook/react": "^5.3.17",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.5",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"@types/react-transition-group": "^4.2.4",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"auto-changelog": "^1.16.2",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.29",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-react-app": "^9.1.1",
"bootstrap": "^4.4.1",
"chromedriver": "^80.0.1",
"classnames": "^2.2.6",
"concurrently": "^5.1.0",
"core-js": "^3.6.4",
"coveralls": "^3.0.9",
"cross-env": "^7.0.2",
"cypress": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.4.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-emotion": "^10.0.14",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mdx": "^1.6.8",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"geckodriver": "^1.19.1",
"http-server": "^0.12.1",
"jest": "^25.1.0",
"jest-emotion": "^10.0.27",
"jest-junit": "^10.0.0",
"jsdom": "^16.2.1",
"microbundle": "^0.12.0-next.8",
"minimist": "^1.2.5",
"parcel-bundler": "^1.12.4",
"react": "^16.13.0",
"react-docgen-typescript-loader": "^3.7.1",
"react-dom": "^16.13.0",
"react-is": "^16.13.0",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.3.0",
"regenerator-runtime": "^0.13.5",
"release-it": "^13.1.1",
"rimraf": "^3.0.2",
"scroll-into-view-if-needed": "^2.2.24",
"selenium-webdriver": "^4.0.0-alpha.7",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@emotion/core": "^10.0.0",
"@emotion/css": "^10.0.0",
"@emotion/styled": "^10.0.0",
"classnames": "^2.2.0",
"react": "^16.13.0",
"react-transition-group": "^4.3.0",
"scroll-into-view-if-needed": "^2.2.0"
},
"dependencies": {},
"alias": {
"src": "./src",
"__src/Wireframes": "./dist"
},
"scripts": {
"type-check": "tsc --noEmit --skipLibCheck",
"lint": "eslint ./ --ext .jsx,.js,.ts,.tsx,.mdx --fix",
"test": "jest",
"test:e2e": "concurrently --success first --kill-others \"cross-env CYPRESS_BASE_URL=http://127.0.0.1:8090/ cypress run\" \"yarn serve:prod\"",
"test:e2e:dev": "concurrently --success first --kill-others \"cross-env CYPRESS_BASE_URL=https://127.0.0.1:1234/ cypress open\" \"yarn start\"",
"test:e2e:local": "jest --config ./e2e/jest.config.js ./e2e/",
"test:e2e:stack": "USE_BROWSER_STACK=true jest --config ./e2e/jest.config.js ./e2e/",
"coverage": "jest --collectCoverage",
"coverage:report": "cat ./reports/coverage/lcov.info | coveralls",
"start": "parcel demo/public/index.html --https --out-dir .build",
"storybook": "start-storybook --ci --port 8080",
"storybook:build": "build-storybook --output-dir dist/storybook --quiet",
"prebuild": "yarn type-check && yarn lint && yarn coverage",
"build": "rimraf dist && parcel build demo/public/index.html --public-url ./ --no-cache",
"build:all": "yarn build && yarn storybook:build && yarn test:e2e",
"package:bundle": "microbundle --globals classnames=classNames,react=React,@emotion/styled=emotionStyled,scroll-into-view-if-needed=scrollIntoView,@emotion/css=emotionCore.css,react-transition-group=ReactTransitionGroup --jsx=React.createElement",
"package:dev": "microbundle watch -w --jsx=React.createElement",
"package:build": "yarn prebuild && rimraf dist && yarn package:bundle",
"serve:prod": "http-server ./dist/ --port 8090 --silent",
"ci": "yarn build:all",
"version": "auto-changelog -p && git add CHANGELOG.md",
"prerelease": "yarn package:build",
"release": "release-it"
},
"engines": {
"node": ">=10",
"yarn": ">=1.19.x"
},
"engineStrict": true,
"release-it": {
"github": {
"release": true,
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
}
},
"auto-changelog": {
"template": "./etc/changelog-template.hbs",
"unreleased": true,
"commitLimit": true,
"includeBranch": []
}
}