-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.25 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
{
"name": "ry-blocks",
"version": "1.0.0",
"description": "A design system for the Web, built in PureScript and React",
"main": "index.js",
"repository": "git@github.com:rowtype-yoga/ry-components.git",
"author": "Mark Eibes <mark.eibes@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.0",
"@storybook/addon-essentials": "^7.0.0-alpha.48",
"@storybook/addon-interactions": "^7.0.0-alpha.48",
"@storybook/react-webpack5": "^7.0.0-alpha.48",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"react-refresh": "^0.13.0",
"rimraf": "^3.0.2",
"storybook": "^7.0.0-alpha.48",
"svg2psreact": "^2.1.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
},
"scripts": {
"clean": "rimraf node_modules output dce-output .spago dist/* *.lock dist",
"build": "spago build",
"build:stories": "spago -x stories.dhall build",
"convert-svgs": "node convert-svgs.js",
"postinstall": "spago install",
"pretest": "yarn build",
"test": "spago test",
"prestart": "yarn build",
"start": "webpack-dev-server --open --config webpack.dev.js",
"bundle": "yarn bundle:build && yarn bundle:dce && yarn bundle:webpack",
"prestorybook": "yarn build:stories",
"storybook": "storybook dev -p 6006",
"prebuild-storybook": "yarn build",
"build-storybook": "storybook build"
},
"dependencies": {
"@dnd-kit/core": "^6.0.1",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.0",
"@dnd-kit/utilities": "^3.2.0",
"@emotion/react": "^11.9.0",
"@popperjs/core": "^2.11.5",
"@react-aria/interactions": "^3.13.0",
"@react-aria/utils": "^3.14.1",
"downshift": "^6.1.7",
"framer-motion": "^6.3.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-intersection-observer": "^9.1.0",
"react-popper": "^2.3.0",
"react-syntax-highlighter": "^15.5.0",
"react-virtuoso": "^3.1.4"
}
}