-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "dribbble-sketch",
"version": "1.1.1",
"description": "Share your creative process directly to the Dribbble community from within Sketch.",
"author": "Dribbble Holdings Ltd.",
"license": "MIT",
"engines": {
"sketch": ">=3.0"
},
"repository": {
"type": "git",
"url": "git@github.com:dribbble/dribbble-sketch.git"
},
"skpm": {
"name": "Dribbble",
"manifest": "plugin/sketch/manifest.json",
"main": "dribbble.sketchplugin",
"resources": [
"plugin/web/main.js"
],
"assets": [
"plugin/web/images/**/*"
]
},
"scripts": {
"build": "rimraf dribbble.sketchplugin && skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"@skpm/builder": "^0.5.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"css-loader": "^1.0.0",
"dotenv": "^6.0.0",
"file-loader": "^1.1.11",
"node-sass": "^4.9.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.0"
},
"dependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-sketchapp": "^2.0.0",
"sketch-module-web-view": "^1.2.3"
}
}