forked from fixthestatusquo/proca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.82 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
{
"name": "@proca/widget",
"version": "0.9.0-beta.1",
"private": false,
"files": [
"dist",
"README.md"
],
"main": "dist/module.js",
"licence": "aGPL3",
"nope.resolutions": {
"@babel/preset-env": "^7.8.7"
},
"repository": {
"type": "git",
"url": "https://github.com/TechToThePeople/proca"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^0.3.6",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@stripe/react-stripe-js": "^1.4.0",
"@stripe/stripe-js": "^1.14.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.9",
"base64url": "^3.0.1",
"i18n-iso-countries": "^6.7.0",
"i18next": "^20.2.2",
"i18next-extract": "^0.1.3",
"i18next-xhr-backend": "^3.2.2",
"iban": "^0.0.14",
"page-metadata-parser": "^1.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^6.15.5",
"react-i18next": "^11.8.15",
"react-ipgeolocation": "^1.4.0",
"react-scripts": "^3.4.3",
"react-share": "^4.4.0",
"react-swipeable-views": "^0.13.9",
"recoil": "^0.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@alienfast/i18next-loader": "^1.1.4",
"@babel/cli": "^7.13.16",
"@babel/node": "^7.14.2",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@proca/api": "2.3.4",
"@rescripts/cli": "0.0.16",
"@rescripts/rescript-use-babel-config": "0.0.12",
"babel-plugin-i18next-extract": "^0.8.3",
"babel-plugin-module-resolver": "^4.1.0",
"compression-webpack-plugin": "^6.0.2",
"cross-fetch": "^3.1.4",
"dotenv": "^9.0.2",
"generate-json-webpack-plugin": "^1.0.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4",
"webpack-bundle-analyzer": "^4.4.1"
},
"scripts": {
"build": "rescripts build",
"eci": "bin/eci.js",
"fetch": "node bin/fetch.js",
"i18n": "NODE_ENV=development babel -f .babelrc 'src/**/*.{js,jsx,ts,tsx}'",
"nope.prepublish": "babel src --out-dir lib",
"prepublishOnly": "node src/locales/index.js && rm -rf dist/* && babel src --config-file ./package.babel.config.js --out-dir dist --copy-files",
"pull": "node bin/pull.js",
"push": "node bin/push.js",
"start": "rescripts start",
"test": "rescripts test",
"test:debug": "rescripts --inspect-brk test --runInBand --no-cache"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"moduleNameMapper": {
"^locales/(.*)$": "<rootDir>/src/locales/en/$1"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}