-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·117 lines (117 loc) · 4.21 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
{
"name": "samaritans",
"version": "0.0.0",
"author": "Torchbox Ltd",
"repository": {
"type": "git",
"url": ""
},
"browserslist": [
"> 3%",
"ie 11",
"Firefox ESR",
"last 2 versions"
],
"scripts": {
"//[ Linting & formatting ]//": "",
"lint:css": "stylelint --report-needless-disables './static_src/sass' './static_src/javascript/vue_components'",
"lint:js": "eslint --ext .js,.ts,.tsx --report-unused-disable-directives .",
"lint:format": "prettier --check '**/?(.)*.{md,css,scss,js,ts,tsx,json,yaml,yml,vue}'",
"lint": "npm run lint:format && npm run lint:js && npm run lint:css",
"format": "prettier --write '**/?(.)*.{md,css,scss,js,ts,tsx,json,yaml,yml,vue}'",
"//[ Build tasks ]//": "",
"build": "webpack --mode development --progress",
"build:prod": "webpack --mode production",
"start": "webpack --mode development --progress --watch",
"start:reload": "webpack-dev-server",
"upload_source_maps_to_sentry": "NODE_env=production npm run build:prod",
"deploy:worker:production": "cd cloudflare/ && wrangler deploy",
"deploy:worker:staging": "npm run deploy:worker:production -- --env=staging"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/jest": "^29.5.6",
"@types/rc-slider": "^8.6.5",
"@types/react": "^16.14.14",
"@types/react-dom": "^16.9.14",
"@types/react-modal": "^3.16.3",
"@types/react-toggle": "^4.0.2",
"@types/styled-components": "^5.0.1",
"autoprefixer": "^10.4.16",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"eslint": "^8.51.0",
"eslint-config-torchbox": "^1.1.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^5.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-custom-properties": "^13.3.2",
"postcss-loader": "^7.3.3",
"prettier": "^2.3.2",
"sass": "^1.33.0",
"sass-loader": "^12.6.0",
"stylelint": "^13.13.1",
"stylelint-config-torchbox": "^1.1.0",
"stylelint-webpack-plugin": "^2.2.2",
"tailwindcss": "^3.1.3",
"ts-jest": "^29.1.1",
"ts-loader": "^8.3.0",
"typescript": "^4.6.2",
"url-loader": "^3.0.0",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"workbox-webpack-plugin": "^7.1.0",
"wrangler": "^3.1.2"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^4.4.3",
"@fingerprintjs/fingerprintjs-pro": "^3.10.1",
"@glidejs/glide": "^3.2.3",
"@reduxjs/toolkit": "^2.2.2",
"@sentry/browser": "^7.110.1",
"@sentry/integrations": "^7.12.1",
"@sentry/react": "^7.110.1",
"@sentry/tracing": "^7.2.0",
"@sentry/webpack-plugin": "^1.18.9",
"awesomplete": "^1.1.4",
"braintree-web": "^3.109.0",
"canvas-confetti": "^1.4.0",
"focus-trap": "^6.7.2",
"lazyframe": "^2.2.7",
"lightgallery.js": "^1.3.1",
"micromodal": "^0.3.2",
"mini-css-extract-plugin": "^2.6.0",
"moment": "~2.29.4",
"moment-timezone": "~0.5.35",
"nouislider": "^15.5.1",
"push.js": "^1.0.9",
"rc-slider": "^8.6.3",
"react": "^16.8.6",
"react-dates": "^21.8.0",
"react-device-detect": "^1.6.2",
"react-dock": "^0.2.4",
"react-dom": "^16.8.6",
"react-modal": "^3.11.1",
"react-modal-hook": "^2.0.0",
"react-redux": "^8.1.3",
"react-spring": "^8.0.14",
"react-toggle": "^4.1.1",
"react-use": "^17.5.0",
"sass": "^1.52.1",
"store2": "^2.14.3",
"styled-components": "^5.0.1",
"tailwindcss": "^3.4.3",
"url-polyfill": "^1.1.12",
"vue": "^3.2.36",
"workbox-window": "^7.1.0"
}
}