-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 2.11 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
{
"name": "client",
"version": "1.0.0",
"repository": "https://github.com/guardian/editorial-tools-pinboard",
"scripts": {
"type-check": "tsc --noEmit",
"watch-type-check": "yarn type-check --watch",
"build-main-client": "webpack --mode=production",
"watch-main-client": "webpack serve --mode=development",
"analyze-main-client-bundle": "webpack --config webpack-bundle-analyzer.config.js --mode=production",
"build-service-worker": "webpack --config webpack.service-worker.config.js --mode=production",
"watch-service-worker": "webpack --config webpack.service-worker.config.js --mode=development --watch",
"watch": "run-p --print-label watch-type-check watch-main-client watch-service-worker",
"build": "run-p --print-label type-check build-main-client build-service-worker",
"test": "jest 2>&1"
},
"dependencies": {
"@apollo/client": "^3.6.5",
"@emotion/react": "11.11.1",
"@guardian/source-foundations": "^4.1.0",
"@guardian/source-react-components": "^4.4.0",
"@guardian/user-telemetry-client": "^1.1.0",
"@sentry/react": "^6.18.1",
"@webscopeio/react-textarea-autocomplete": "4.9.2",
"apollo-link-debounce": "^3.0.0",
"aws-appsync-auth-link": "^3.0.7",
"aws-appsync-subscription-link": "^3.0.9",
"date-fns": "^2.19.0",
"graphql": "^15.4.0",
"preact": "10.15.1",
"react-draggable": "^4.4.5",
"react-joyride": "^2.5.3",
"react-shadow": "^19.0.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@prefresh/webpack": "^3.3.3",
"@svgr/webpack": "^6.2.1",
"@types/react": "16.9.56",
"@types/react-dom": "16.9.9",
"@types/webpack-env": "^1.16.3",
"@types/webscopeio__react-textarea-autocomplete": "^4.7.2",
"babel-loader": "^8.2.3",
"html-webpack-plugin": "^5.5.0",
"jest-environment-node": "^26.6.2",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^5.8.0"
}
}