This repository has been archived by the owner on Aug 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
167 lines (167 loc) · 5.75 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
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
160
161
162
163
164
165
166
167
{
"name": "styled-snapshot",
"version": "0.2.5",
"description": "A utility for taking Jest snapshots of components that use Styled Components.",
"keywords": [
"enzyme",
"jest",
"react",
"styled-components",
"snapshot"
],
"homepage": "https://github.com/badbatch/styled-snapshot",
"bugs": {
"url": "https://github.com/badbatch/styled-snapshot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/badbatch/styled-snapshot"
},
"license": "MIT",
"author": "Dylan Aubrey <[email protected]>",
"main": "lib/main/index.js",
"module": "lib/module/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "yarn run clean:libs && yarn run compile",
"clean": "yarn run clean:libs && yarn run clean:repo",
"clean:libs": "del-cli ./lib",
"clean:repo": "del-cli ./node_modules",
"compile": "concurrently npm:compile:*",
"compile-watch": "concurrently npm:compile-watch:*",
"compile-watch:main": "yarn run compile:main --watch",
"compile-watch:types": "yarn run compile:types --watch",
"compile:main": "cross-env BABEL_ENV=main babel ./src --out-dir ./lib/main --extensions \".ts\",\".tsx\" --source-maps --config-file ./babel.config.js",
"compile:module": "cross-env BABEL_ENV=module babel ./src --out-dir ./lib/module --extensions \".ts\",\".tsx\" --source-maps --config-file ./babel.config.js",
"compile:types": "tsc --declaration --declarationMap --emitDeclarationOnly",
"cutoff": "cutoff",
"cutoff:post-version": "yarn run compile",
"init": "yarn",
"lint": "concurrently npm:lint:*",
"lint:js": "eslint .",
"lint:ts": "tslint --project ./tsconfig.json",
"new-repo": "new-repo",
"publish-cutoff": "publish-cutoff",
"test": "jest --logHeapUsage",
"type-check": "tsc --noEmit",
"validate": "yarn run build && yarn run lint && yarn run type-check && yarn run test",
"wipe": "del-cli ./yarn.lock ./node_modules"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"resolutions": {
"@types/react": "16.9.23"
},
"dependencies": {
"@repodog/constants": "^0.3.29",
"@repodog/helpers": "^0.3.27",
"enzyme-to-json": "^3.4.4",
"md5": "^2.2.1",
"prettier": "^1.19.1",
"react-is": "^16.13.0"
},
"peerDependencies": {
"@babel/runtime": "< 8",
"core-js": "< 4",
"enzyme": "< 4",
"jest": "< 25",
"lodash": "< 5",
"react": "< 17",
"styled-components": "< 5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-syntax-top-level-await": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/register": "^7.8.6",
"@babel/runtime": "^7.8.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@repodog/babel-config": "^0.3.31",
"@repodog/build-references": "^0.3.27",
"@repodog/commitlint-config": "^0.3.24",
"@repodog/config-helpers": "^0.3.30",
"@repodog/eslint-config": "^0.3.26",
"@repodog/jest-config": "^0.3.31",
"@repodog/lerna-config": "^0.3.24",
"@repodog/markdownlint-config": "^0.3.24",
"@repodog/new-package": "^0.3.26",
"@repodog/new-repo": "^0.3.38",
"@repodog/prettier-config": "^0.3.25",
"@repodog/ts-config": "^0.3.24",
"@repodog/tslint-config": "^0.3.26",
"@repodog/typedoc-config": "^0.3.24",
"@repodog/types": "^0.3.26",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"@types/md5": "^2.1.33",
"@types/prettier": "^1.19.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-is": "^16.7.1",
"@types/styled-components": "^4.1.19",
"babel-eslint": "^10.1.0",
"babel-plugin-lodash": "^3.3.4",
"codecov": "^3.6.1",
"concurrently": "^5.1.0",
"core-js": "^3.6.4",
"cross-env": "^7.0.0",
"cutoff": "^0.2.7",
"del-cli": "^3.0.0",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-sort-class-members": "^1.6.0",
"fs-extra": "^8.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lodash": "^4.17.15",
"markdownlint-cli": "^0.22.0",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"styled-components": "^4.4.0",
"ts-toolbelt": "^6.3.5",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.1.0",
"type-fest": "^0.11.0",
"typedoc": "^0.16.11",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.8.3",
"utility-types": "^3.10.0"
},
"engines": {
"node": "< 10.16.0"
}
}