-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.19 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
{
"name": "@sdc/modules",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"prebuild": "tsc --build",
"build": "rollup --config",
"start": "rollup --config --watch",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o storybook-static",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@babel/plugin-transform-react-jsx-compat": "^7.22.5",
"@babel/preset-react": "^7.22.15",
"@babel/standalone": "^7.23.2",
"@emotion/react": "^11.1.5",
"@guardian/libs": "16.0.0",
"@guardian/source": "2.0.0",
"@sdc/shared": "1.0.0",
"@types/babel__standalone": "^7.1.6",
"zod": "3.22.4"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-typescript": "^8.2.0",
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/react": "^7.1.1",
"@storybook/react-webpack5": "^7.1.1",
"@types/jest": "^29.5.6",
"@types/react-dom": "18.0.11",
"babel-loader": "^9.1.3",
"chromatic": "^5.10.2",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^2.0.4",
"react-docgen-typescript-loader": "^3.6.0",
"rollup": "^2.10.5",
"rollup-plugin-external-globals": "^0.5.0",
"rollup-plugin-filesize": "^9.0.1",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-visualizer": "^5.9.0",
"storybook": "^7.1.1",
"ts-jest": "^29.1.1",
"ts-loader": "^6.2.1",
"tslib": "^2.5.3",
"typescript": "~5.1.3"
},
"optionalDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
}
}