-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
{
"name": "@codeblog/components",
"version": "1.0.5",
"main": "dist/index.js",
"browser": "dist/index.js",
"repository": "git@github.com:codeblog/components.git",
"author": "Jarred Sumner <jarred@jarredsumner.com>",
"license": "MIT",
"scripts": {
"dev": "webpack --config webpack.config.js --mode development --watch",
"build": "webpack --config webpack.config.js --mode production",
"postbuild": "yarn tsc -p tsconfig.json",
"deploy": "yarn build && yarn publish"
},
"peerDependencies": {
"object-assign": "*",
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/classnames": "^2.2.7",
"@types/react": "^16.8.4",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.10",
"dts-bundle-webpack": "^1.0.2",
"mini-css-extract-plugin": "^0.5.0",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"postcss-css-variables": "^0.12.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3333",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^16.8.3"
}
}