-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.99 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
{
"name": "flex-inputs",
"version": "0.1.0",
"description": "Simple flex-input component (autosize width and height)",
"main": "src/index",
"scripts": {
"test": "test",
"build": "rollup -c",
"start-demo": "webpack-dev-server --config demo/webpack.config.js --progress --hot",
"build-demo": "webpack --production --output-public-path /flex-inputs/ --config demo/webpack.config.js",
"deploy-demo": "npm run build-demo && gh-pages -d demo/dist"
},
"author": "vovakulikov@icloud.com",
"license": "ISC",
"peerDependencies": {
"classnames": "^2.2.6",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"gh-pages": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"mini-css-extract-plugin": "^1.2.1",
"parcel-bundler": "^1.12.4",
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@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-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.2",
"@rollup/plugin-typescript": "^5.0.1",
"@types/classnames": "^2.2.9",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"eslint": "^7.3.1",
"eslint-plugin-react": "^7.20.3",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.0",
"react-hot-loader": "^4.13.0",
"react-refresh": "^0.9.0",
"rollup": "^2.18.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-typescript2": "^0.27.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.2",
"typescript": "^3.9.6",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}