-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "com.dribbble.xd-plugin",
"version": "0.4.2",
"main": "main.js",
"scripts": {
"watch": "nodemon -w plugin -e js,jsx,scss -w webpack.config.js -x yarn build",
"build": "webpack --mode development",
"production": "NODE_ENV=production webpack --mode production",
"dist": "NODE_ENV=production webpack --mode production && \"$(yarn bin)/copy\" main.js manifest.json plugin/images/* plugin/images/*/** dist && cd dist && \"$(yarn bin)/bestzip\" ../dribbble-xd-$(node -p -e \"require('../package.json').version\").xdx * && cd ../ && rm -r dist"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:dribbble/dribbble-xd.git"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-react-jsx": "^6.24.1",
"bestzip": "^2.1.2",
"copy": "^0.3.2",
"css-loader": "^1.0.0",
"dotenv": "^6.0.0",
"file-loader": "^1.1.11",
"node-sass": "^4.9.3",
"nodemon": "^1.18.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.0",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"Base64": "^1.0.1",
"react": "^16.4.2",
"react-dom": "^16.4.2"
}
}