-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
88 lines (88 loc) · 2.63 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
{
"name": "@skpm/sketch-debugger",
"version": "0.9.9",
"description": "See your plugin logs, inspect the state of Sketch documents, explore actions, and more.",
"files": [
"debugger.js",
"shared-actions.js"
],
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "sketch-dev-tools",
"manifest": "src/manifest.json",
"main": "dev-tools.sketchplugin",
"assets": [
"assets/**/*"
]
},
"repository": {
"url": "https://github.com/skpm/sketch-dev-tools"
},
"license": "MIT",
"scripts": {
"build": "skpm-build && (mkdir dev-tools.sketchplugin/Contents/Resources/.scripts || true)",
"prepare": "(rm -rf dev-tools.sketchplugin || true) && NODE_ENV=production skpm-build && cd dev-tools.sketchplugin/Contents/Resources && npm i && (mkdir .scripts || true)",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"link": "npm run build && skpm-link",
"lint-staged": "lint-staged",
"lint": "eslint --ignore-path=.gitignore .",
"prettier:base": "prettier --write",
"prettify": "npm run prettier:base \"./src/**/*.{js,jsx}\" \"./resources/**/*.{js,jsx}\""
},
"devDependencies": {
"@babel/standalone": "^7.5.5",
"@skpm/builder": "^0.7.2",
"@skpm/child_process": "^0.4.0",
"@skpm/extract-loader": "^2.0.2",
"@skpm/fs": "^0.2.5",
"babel-plugin-emotion": "^9.2.11",
"codemirror": "^5.48.2",
"css-loader": "^1.0.0",
"dayjs": "^1.8.15",
"emotion": "^9.2.12",
"emotion-theming": "^9.2.9",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-no-not-accumulator-reassign": "^0.1.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"html-loader": "^0.5.5",
"lint-staged": "^9.2.1",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"prop-types": "^15.6.2",
"react": "^16.9.0",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.9.0",
"react-emotion": "^9.2.12",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-split-pane": "^0.1.87",
"redux": "^3.7.2",
"redux-logger": "^3.0.6"
},
"dependencies": {
"sketch-module-web-view": "^3.2.1",
"sketch-utils": "^0.2.10"
},
"resources": [
"resources/webview.js"
],
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.js": [
"npm run prettier:base",
"eslint --quiet --rule 'prettier/prettier: [\"error\", {\"trailingComma\": \"es5\", \"singleQuote\": true}]'",
"git add"
]
}
}