This repository was archived by the owner on Sep 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 5.27 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 5.27 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "apps-rendering",
"version": "0.0.1",
"description": "Article rendering for The Guardian iOS and Android apps",
"main": "server/server.ts",
"browserslist": [
"android >= 5",
"ios >= 12"
],
"scripts": {
"postinstall": "is-ci || husky install",
"upload": "node-riffraff-artifact",
"copy-manifest": "cp dist/assets/manifest.json dist/server/manifest.json",
"copy-fonts": "cp -R assets/fonts dist/assets/fonts",
"test": "jest --config config/jest.config.js --verbose",
"test:coverage": "npm run test; open coverage/index.html",
"test:watch": "jest --config config/jest.config.js --watch",
"lint": "node_modules/eslint/bin/eslint.js -c config/.eslintrc.js ./ --ext '.ts,.tsx'",
"lint:fix": "node_modules/eslint/bin/eslint.js -c config/.eslintrc.js ./ --ext '.ts,.tsx' --fix",
"watch:server": "webpack --config webpack.config.ts --config-name server --env watch",
"watch:client": "webpack serve --config webpack.config.ts --config-name client",
"watch": "npm run watch:server & npm run watch:client",
"build:server": "webpack --config webpack.config.ts --config-name server",
"build:client": "webpack --config webpack.config.ts --config-name client",
"build:server:prod": "webpack --config webpack.config.ts --config-name server --env production",
"build:client:prod": "webpack --config webpack.config.ts --config-name clientProduction",
"storybook": "start-storybook -s ./assets -p 8181 --ci",
"build-storybook": "build-storybook -o dist -s ./assets",
"deploy-storybook": "storybook-to-ghpages && ./.storybook/pushFonts.sh"
},
"author": "",
"license": "ISC",
"prettier": "@guardian/prettier",
"dependencies": {
"@creditkarma/thrift-server-core": "^0.16.1",
"@emotion/cache": "^11.1.3",
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.4.0",
"@emotion/server": "^11.0.0",
"@guardian/apps-rendering-api-models": "^0.11.2",
"@guardian/atoms-rendering": "^17.0.0",
"@guardian/bridget": "^1.11.0",
"@guardian/content-api-models": "^17.0.0",
"@guardian/content-atom-model": "^3.2.4",
"@guardian/discussion-rendering": "^4.6.1",
"@guardian/image-rendering": "github:guardian/image-rendering#1167f8bc",
"@guardian/node-riffraff-artifact": "^0.2.0",
"@guardian/renditions": "^0.2.0",
"@guardian/src-brand": "^3.3.0",
"@guardian/src-button": "^3.8.0",
"@guardian/src-ed-lines": "^3.3.0",
"@guardian/src-foundations": "^3.3.0",
"@guardian/src-icons": "^3.8.0",
"@guardian/src-link": "^3.3.0",
"@guardian/src-radio": "^3.3.0",
"@guardian/src-svgs": "^2.8.2",
"@guardian/src-text-area": "^3.3.0",
"@guardian/src-text-input": "^3.3.0",
"@guardian/types": "^8.0.0",
"@types/jsdom": "^16.2.12",
"@types/uuid": "^8.3.0",
"@types/webpack-node-externals": "^2.5.0",
"aws-sdk": "^2.822.0",
"babel-jest": "^26.6.2",
"buffer": "^6.0.3",
"compression": "^1.7.4",
"core-js": "^3.8.2",
"create-emotion-server": "^10.0.27",
"emotion": "^10.0.27",
"emotion-server": "^10.0.27",
"express": "^4.17.1",
"jest-emotion": "^10.0.32",
"jsdom": "^16.5.3",
"node-fetch": "^2.6.1",
"node-int64": "^0.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.5",
"source-map-support": "^0.5.19",
"thrift": "^0.12.0",
"typescript": "^4.2.4"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@emotion/jest": "^11.2.0",
"@guardian/eslint-config-typescript": "^0.6.0",
"@guardian/prettier": "^0.5.0",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-knobs": "^6.3.0",
"@storybook/addon-storyshots": "^6.3.4",
"@storybook/builder-webpack5": "^6.3.4",
"@storybook/manager-webpack5": "^6.3.4",
"@storybook/react": "^6.3.4",
"@storybook/storybook-deployer": "^2.8.10",
"@types/clean-css": "^4.2.3",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.8",
"@types/html-webpack-plugin": "^3.2.4",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/node-fetch": "^2.5.7",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@types/webpack": "^4.41.26",
"@types/webpack-dev-server": "^3.11.3",
"@types/webpack-manifest-plugin": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.11.1",
"babel-loader": "^8.2.2",
"chromatic": "^5.7.1",
"clean-css": "^5.1.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.24.0",
"html-webpack-plugin": "^5.2.0",
"husky": "^5.0.6",
"is-ci": "^2.0.0",
"jest": "^26.6.1",
"prettier": "^2.2.0",
"ts-jest": "^26.5.6",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"webpack": "^5.45.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "^3.1.1",
"webpack-node-externals": "^2.5.2",
"whatwg-fetch": "^3.6.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.2"
}
}