This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.3 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
{
"name": "p2pu-input-fields",
"version": "1.0.2",
"description": "Input fields used in P2PU projects",
"repository": {
"type": "git",
"url": "git+https://github.com/p2pu/p2pu-input-fields.git"
},
"main": "dist/build.js",
"module": "dist/index.js",
"sideEffects": false,
"scripts": {
"start": "webpack-dev-server --mode development --config webpack.config.demo.js",
"prebuild": "NODE_ENV=production babel ./src --out-dir ./dist",
"build": "webpack --mode production --config webpack.config.build.js",
"build:examples": "webpack --config webpack.config.js"
},
"author": "Sharon Kennedy <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"prop-types": "^15.7.2",
"axios": "^0.19.1",
"jsonp": "^0.2.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-decorators": "7.7.4",
"@babel/plugin-proposal-export-namespace-from": "7.7.4",
"@babel/plugin-proposal-function-sent": "7.7.4",
"@babel/plugin-proposal-json-strings": "7.7.4",
"@babel/plugin-proposal-numeric-separator": "7.7.4",
"@babel/plugin-proposal-throw-expressions": "7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "7.7.4",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"autoprefixer": "^9.7.5",
"axios": "^0.19.1",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^4.3.0",
"jsonp": "^0.2.1",
"mini-css-extract-plugin": "^0.9.0",
"moment": "^2.24.0",
"node-sass": "^4.14.1",
"postcss-loader": "3.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rollup": "^0.60.7",
"rollup-plugin-analyzer": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-json": "^2.3.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-uglify": "^4.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^0.23.1",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"react-datepicker": "2.16.0",
"react-rangeslider": "^2.2.0",
"react-select": "^3.1.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
"@babel/plugin-transform-runtime"
]
}
}