-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "@zeplin/cli-connect-react-plugin",
"version": "1.1.2",
"description": "Zeplin CLI Connected Components - React Plugin",
"main": "./dist/src/index",
"scripts": {
"test": "jest",
"copy-templates": "copyfiles -u 1 src/template/** dist/src",
"build:dev": "npm run build -- --sourceMap",
"build": "rimraf dist/ && npm run copy-templates && tsc",
"lint": "eslint --ext .js,.ts .",
"prepare": "npm run build"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zeplin/cli-connect-react-plugin.git"
},
"bugs": {
"url": "https://github.com/zeplin/cli-connect-react-plugin/issues"
},
"homepage": "https://github.com/zeplin/cli-connect-react-plugin#readme",
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@types/pug": "^2.0.4",
"@types/react": "^17.0.0",
"@types/update-notifier": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@zeplin/cli": "^1.1.2",
"@zeplin/eslint-config": "^2.2.0",
"copyfiles": "^2.2.0",
"eslint": "^7.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prop-types": "^15.7.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.3",
"typescript": "^4.3.0"
},
"dependencies": {
"fs-extra": "^9.0.1",
"pug": "^2.0.4",
"react-docgen": "^5.3.1",
"react-docgen-typescript": "^2.2.2",
"update-notifier": "^5.0.1"
},
"peerDependencies": {
"typescript": ">= 4.x"
}
}