-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.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
{
"name": "@zeplin/cli-connect-storybook-plugin",
"version": "2.0.0",
"description": "Zeplin CLI Connected Components - Storybook Plugin",
"main": "./dist/src/index",
"scripts": {
"test": "jest",
"build": "tsc",
"build:clean": "rimraf dist/ && npm run build",
"lint": "eslint --ext .js,.ts .",
"prepare": "npm run build:clean"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zeplin/cli-connect-storybook-plugin.git"
},
"bugs": {
"url": "https://github.com/zeplin/cli-connect-storybook-plugin/issues"
},
"homepage": "https://github.com/zeplin/cli-connect-storybook-plugin#readme",
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/jsdom": "^12.2.4",
"@types/node": "^12.20.6",
"@types/node-fetch": "^2.5.8",
"@types/proper-url-join": "^2.1.0",
"@types/update-notifier": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@zeplin/cli": "^2.0.0",
"@zeplin/eslint-config": "^2.3.2",
"copyfiles": "^2.4.1",
"eslint": "^6.4.0",
"eslint-import-resolver-typescript": "^2.4.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"prop-types": "^15.7.2",
"rimraf": "^2.6.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"dependencies": {
"@storybook/csf": "0.0.1",
"cross-spawn": "^7.0.3",
"eventsourcemock": "^2.0.0",
"https": "^1.0.0",
"jsdom": "^15.2.1",
"node-fetch": "^2.6.0",
"path": "^0.12.7",
"proper-url-join": "^2.1.1",
"ts-dedent": "^2.1.0",
"update-notifier": "^5.1.0"
}
}