-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
111 lines (111 loc) · 2.81 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
{
"name": "sketch-select",
"version": "3.0.1",
"description": "Make it convenient to select layers with similar attributes.",
"repository": {
"type": "git",
"url": "git+https://github.com/canisminor1990/sketch-select.git"
},
"author": {
"name": "CanisMinor",
"email": "i@canisminor.cc",
"url": "https://canisminor.cc/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/canisminor1990/sketch-select/issues"
},
"homepage": "https://github.com/canisminor1990/sketch-select",
"main": "SketchSelect.sketchplugin",
"engines": {
"sketch": ">=49.0"
},
"skpm": {
"name": "sketch-select",
"manifest": "src/manifest.json",
"main": "SketchSelect.sketchplugin",
"assets": [
"dist/**/*"
]
},
"appcast": "https://raw.githubusercontent.com/canisminor1990/sketch-select/master/.appcast.xml",
"scripts": {
"start": "concurrently \"yarn start:panel\" \"yarn start:plugin\"",
"start:plugin": "cross-env NODE_ENV=development skpm-build --watch",
"start:panel": "roadhog dev",
"build": "yarn build:panel && yarn build:plugin",
"build:plugin": "cross-env NODE_ENV=production skpm-build",
"build:panel": "roadhog build",
"publish": "skpm publish",
"link": "skpm-link",
"lint": "lint-staged",
"lint:es": "eslint --fix --ext .js ./"
},
"pre-commit": [
"lint"
],
"lint-staged": {
"*.md": [
"prettier --trailing-comma all --single-quote --write",
"git add"
],
"./package.json": [
"prettier --trailing-comma all --single-quote --write",
"git add"
],
"src/**/*.js": [
"eslint --fix",
"git add"
],
"panel/**/*.js": [
"eslint --fix",
"git add"
],
"panel/**/*.scss": [
"prettier --trailing-comma all --single-quote --write",
"git add"
]
},
"peerDependencies": {
"skpm": "^1.0.14"
},
"dependencies": {
"@skpm/builder": "^0.4.0",
"antd": "^3.2.3",
"dva": "^2.1.0",
"dva-loading": "^1.0.4",
"lodash": "^4.17.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sketch-module-web-view": "^0.2.6"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-dva-hmr": "^0.4.0",
"babel-plugin-import": "^1.6.2",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^3.5.1",
"cross-env": "^5.1.3",
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.37.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"expect": "^21.2.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"node-sass": "^4.5.3",
"pre-commit": "^1.2.2",
"prettier": "^1.11.1",
"redbox-react": "^1.3.2",
"roadhog": "^2.2.0",
"sass-loader": "^6.0.6"
}
}