-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 3.91 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
{
"name": "p2pu-components",
"version": "1.6.18",
"description": "Search component used in P2PU projects",
"repository": {
"type": "git",
"url": "git+https://github.com/p2pu/p2pu-search-cards.git"
},
"main": "dist/build.js",
"scripts": {
"start": "webpack-dev-server --mode development --config webpack.config.demo.js",
"transpile": "NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps",
"build": "webpack --mode production --config webpack.config.js",
"build:demo": "webpack --mode production --config webpack.config.demo.js",
"build:demo:af": "webpack --mode production --config webpack.config.demo.js --env.locale=af",
"build:demo:de": "webpack --mode production --config webpack.config.demo.js --env.locale=de",
"build:demo:es": "webpack --mode production --config webpack.config.demo.js --env.locale=es",
"build:profile": "webpack --mode production --config webpack.config.profile.js",
"deploy": "npm publish",
"predeploy": "git push origin master",
"test": "jest"
},
"author": "Sharon Kennedy <[email protected]>",
"license": "MIT",
"peerDependencies": {
"axios": "^0.19.1",
"jsonp": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@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.19.6",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"axios": "^0.21.4",
"babel-jest": "^26.0.1",
"babel-loader": "^9.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-ttag": "^1.8.5",
"bootstrap": "^5.2.3",
"core-js": "^3.28.0",
"css-loader": "^6.7.3",
"custom-event-polyfill": "^1.0.6",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"jsonp": "^0.2.1",
"mini-css-extract-plugin": "^2.7.2",
"p2pu-theme": "file:p2pu-theme",
"prop-types": "^15.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.13.11",
"sass": "^1.43.4",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"svg-url-loader": "^8.0.0",
"ttag-cli": "^1.10.5",
"wait-for-expect": "^3.0.2",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"@tinymce/tinymce-react": "^3.14.0",
"promise-polyfill": "^8.3.0",
"query-string": "^5.0.0",
"react-select": "^5.7.0",
"react-tabs": "^6.0.0",
"react-telephone-input": "^5.0.0",
"slugify": "^1.4.5",
"ttag": "^1.7.22"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": false,
"collectCoverageFrom": [
"<rootDir>/src/**/*.js?(x)"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"transform": {
"^.+\\.(js|jsx)$": "babel-jest",
".+\\.(css|styl|less|sass|scss)$": "<rootDir>/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/jest/fileTransform.js"
},
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/jest/cssTransform.js"
},
"setupFiles": [
"<rootDir>/jest/setup.js"
]
},
"sideEffects": [
"*.css",
"*.scss"
],
"browserslist": [
"defaults",
">0.2%",
"ie 11"
]
}