This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 3.09 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
{
"name": "@invisionapp/dsm-storybook",
"repository": {
"type": "git",
"url": "https://github.com/InVisionApp/dsm-storybook-cli"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "MIT",
"scripts": {
"build-prod": "rimraf ./dist && npm run build-prod-web && npm run build-prod-node",
"build-prod-web": "webpack --mode production --config ./config/webpack.config.base.js",
"build-prod-node": "webpack --mode production --config ./config/webpack-node.config.base.js",
"test": "NODE_ENV=test jest --config jest.config.json",
"test-local": "docker-compose -f docker-compose.yml -f docker-compose-test.yml up",
"lint": "eslint src",
"local-publish": "yalc publish --yarn --no-sig --force",
"clean-yalc": "yalc installations clean @invisionapp/dsm-storybook",
"postupdate": "chmod +x ./node_modules/.bin/dsm-storybook"
},
"bin": {
"dsm-storybook": "bin/dsm-storybook.js"
},
"dependencies": {
"@angular/compiler": "7.1.2",
"@babel/traverse": "7.1.6",
"@babel/types": "7.2.2",
"angular-docgen": "1.3.1",
"axios": "0.19.0",
"chalk": "2.4.1",
"cli-table3": "0.5.1",
"commander": "2.19.0",
"core-js": "3.4.0",
"cosmiconfig": "5.2.1",
"cross-env": "5.2.0",
"estree-to-babel": "2.1.0",
"fs-extra": "7.0.1",
"get-port": "4.2.0",
"glob": "7.1.3",
"lodash": "4.17.15",
"mime-types": "2.1.21",
"moment": "2.24.0",
"ora": "3.4.0",
"pkg-dir": "4.1.0",
"prettier": "1.19.1",
"prism-react-renderer": "1.0.2",
"prismjs": "1.21.0",
"react-docgen": "5.3.1",
"read-pkg": "4.0.1",
"read-pkg-up": "4.0.0",
"request-promise": "4.2.4",
"rimraf": "2.6.2",
"semver": "6.0.0",
"shelljs": "0.8.3",
"shortid": "2.2.14",
"tunnel": "0.0.6",
"url-parse": "1.4.7",
"vue-docgen-api": "3.11.4"
},
"peerDependencies": {
"@storybook/addon-options": ">= 4.1.11 < ^5.0.10",
"@storybook/addons": ">= 4.1.11 < ^5.0.10",
"react": "*"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.5",
"babel-plugin-add-module-exports": "1.0.0",
"babel-plugin-prismjs": "1.0.2",
"bluebird": "3.5.5",
"chai": "4.2.0",
"child_process": "1.0.2",
"codecov": "3.3.0",
"css-loader": "2.0.2",
"danger": "10.4.0",
"deep-equal-in-any-order": "1.0.13",
"eslint": "6.8.0",
"eslint-plugin-react": "7.18.0",
"express": "4.17.1",
"jest": "24.7.1",
"raw-loader": "2.0.0",
"replace-in-file": "4.1.1",
"style-loader": "0.23.1",
"superagent": "5.1.0",
"unzipper": "0.10.1",
"webpack": "4.28.2",
"webpack-cli": "3.1.2",
"webpack-node-externals": "1.7.2",
"webpack-shell-plugin": "0.5.0",
"yalc": "1.0.0-pre.45"
}
}