-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
113 lines (113 loc) · 3.83 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
{
"name": "storybook",
"version": "0.98.0",
"private": true,
"dependencies": {
"@accordproject/concerto-core": "1.2.2-20210927172800",
"@accordproject/cicero-core": "0.22.0",
"@accordproject/markdown-slate": "0.16.5",
"@accordproject/markdown-transform": "0.16.5",
"@accordproject/ui-components": "0.98.0",
"@accordproject/ui-concerto": "0.98.0",
"@accordproject/ui-contract-editor": "0.98.0",
"@accordproject/ui-markdown-editor": "0.98.0",
"@babel/cli": "7.13.10",
"@babel/core": "7.13.10",
"@babel/plugin-transform-runtime": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/preset-react": "7.10.1",
"@rollup/plugin-babel": "5.0.4",
"@rollup/plugin-commonjs": "12.0.0",
"@rollup/plugin-node-resolve": "8.1.0",
"@testing-library/jest-dom": "5.5.0",
"@testing-library/react": "10.0.3",
"@testing-library/react-hooks": "3.2.1",
"@testing-library/user-event": "10.1.0",
"autoprefixer": "9.7.6",
"docz": "2.3.1",
"husky": "4.2.5",
"jest-environment-jsdom-sixteen": "1.0.3",
"lint-staged": "10.1.7",
"npm-run-all": "4.1.5",
"postcss-preset-env": "6.7.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-scripts": "3.4.1",
"recursive-copy": "2.0.10",
"redux": "^4.0.5",
"rimraf": "3.0.2",
"rollup": "2.7.3",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-filesize": "7.0.0",
"rollup-plugin-includepaths": "0.2.3",
"rollup-plugin-peer-deps-external": "2.2.2",
"rollup-plugin-postcss": "3.1.1",
"rollup-plugin-stylelint": "1.0.0",
"rollup-plugin-terser": "5.3.0",
"semantic-ui-css": "^2.4.1",
"slate": "^0.85.0",
"slate-history": "^0.85.0",
"slate-react": "^0.83.2",
"styled-components": "^5.1.0",
"stylelint": "13.3.3",
"stylelint-config-standard": "20.0.0",
"stylelint-order": "4.0.0"
},
"scripts": {
"storybook": "NODE_OPTIONS='--openssl-legacy-provider' start-storybook -p 9009 -s public",
"build-storybook": "NODE_OPTIONS='--openssl-legacy-provider --max-old-space-size=4096' build-storybook -s public --quiet",
"build-storybook:watch": "NODE_OPTIONS='--openssl-legacy-provider --max-old-space-size=4096' build-storybook -w -s public --quiet",
"test": "NODE_ENV=test jest",
"storybook:ci": "start-storybook -p 9009 -s public --ci",
"test:e2e": "cypress run --headless -C cypress.json",
"ci:start-and-test-storybook": "cross-env START_SERVER_AND_TEST_INSECURE=1 yarn start-server-and-test storybook:ci http://localhost:9009 test:e2e"
},
"repository": {
"type": "git",
"url": "https://github.com/accordproject/web-components",
"directory": "packages/storybook"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"style": "lib/default.css",
"devDependencies": {
"@storybook/addon-a11y": "^6.5.13",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-docs": "^6.5.13",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-links": "^6.5.13",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addon-storyshots": "6.5.13",
"@storybook/addons": "^6.5.13",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.5.13",
"babel-jest": "^26.1.0",
"cross-env": "^7.0.3",
"cypress": "^6.6.0",
"file-system-cache": "1.0.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.5.4",
"react-test-renderer": "16.13.1",
"start-server-and-test": "^1.12.1",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
}
}