This repository has been archived by the owner on Aug 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.61 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
{
"name": "medpack",
"version": "1.6.2",
"description": "Extensible, opinionated, doctor approved webpack configuration",
"repository": "sappira-inc/medpack",
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"main": "lib/medpack.js",
"bin": "lib/cli.js",
"files": [
"lib"
],
"license": "MIT",
"scripts": {
"example": "cd example && npm run start",
"example:build": "cd example && npm run build",
"test": "jest",
"prebuild": "rimraf lib",
"build": "babel src --out-dir lib --copy-files --extensions \".ts\"",
"prepublishOnly": "npm run build",
"release": "standard-version"
},
"author": "Kyle Alwyn <[email protected]>",
"dependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "7.6.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-destructuring": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@babel/register": "^7.7.0",
"@babel/runtime": "^7.7.2",
"autoprefixer": "^9.7.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"bfj": "^7.0.1",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"chalk": "^3.0.0",
"core-js": "3.6.3",
"css-loader": "^3.2.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"file-loader": "^4.3.0",
"find-up": "^4.1.0",
"fs-extra": "^8.1.0",
"html-webpack-plugin": "^4.0.0-beta.2",
"loader-utils": "1.2.3",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"object-assign": "4.1.1",
"object.entries": "1.1.0",
"object.values": "1.1.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"promise": "^8.0.3",
"raf": "3.4.1",
"react-dev-utils": "^9.1.0",
"react-hot-loader": "^4.12.18",
"resolve": "^1.12.2",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"sw-precache-webpack-plugin": "0.11.5",
"thread-loader": "^2.1.3",
"typescript": "^3.7.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.3.0",
"webpack": "^4.41.2",
"webpack-dev-server": "^3.9.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^4.2.2",
"whatwg-fetch": "3.0.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@types/autoprefixer": "^9.6.1",
"@types/case-sensitive-paths-webpack-plugin": "^2.1.3",
"@types/express": "^4.17.2",
"@types/find-up": "^4.0.0",
"@types/fs-extra": "^8.0.1",
"@types/html-webpack-plugin": "^3.2.1",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"@types/mini-css-extract-plugin": "^0.8.0",
"@types/node": "^12.12.11",
"@types/optimize-css-assets-webpack-plugin": "^5.0.1",
"@types/react": "^16.9.17",
"@types/uglifyjs-webpack-plugin": "^1.1.0",
"@types/webpack": "^4.41.0",
"@types/webpack-dev-server": "^3.4.0",
"@types/webpack-manifest-plugin": "^2.1.0",
"@types/webpack-merge": "^4.1.5",
"babel-plugin-styled-components": "^1.10.7",
"jest": "^24.9.0",
"react": "16.8.3",
"react-dom": "16.8.3",
"standard-version": "^7.0.1",
"ts-jest": "^24.2.0"
}
}