This repository has been archived by the owner on May 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.9 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
{
"name": "xyfir-buttons",
"version": "2.2.0",
"description": "xyButtons browser extension",
"scripts": {
"build:js": "webpack-cli",
"build:css:app": "node-sass --output-style compressed main/app.scss build/app.css",
"build:css:inject": "node-sass --output-style compressed main/inject.scss build/inject.css",
"build:css": "npm run build:css:app & npm run build:css:inject",
"prebuild:extension": "(man -V && npm run prebuild:extension--unix) || npm run prebuild:extension--windows",
"prebuild:extension--unix": "rm -rf build/*; cp -R main/* build; cp -R res build",
"prebuild:extension--windows": "del /S /Q build\\* & copy main\\*.* build & xcopy /E /I res build\\res",
"build:extension": "npm run build:js & npm run build:css",
"zip": "(man -V && npm run zip--unix) || npm run zip--windows",
"zip--unix": "cd build; zip -r ext.zip *",
"zip--windows": "@powershell Add-Type -A System.IO.Compression.FileSystem; [IO.Compression.ZipFile]::CreateFromDirectory('build', 'ext.zip')",
"postzip--windows": "move ext.zip build"
},
"author": "Xyfir, LLC <[email protected]> (https://xyfir.com/)",
"license": "MIT",
"prettier": {
"singleQuote": true
},
"dependencies": {
"brace": "^0.11.1",
"chrome-promise": "^3.0.0",
"fuse.js": "^3.2.0",
"github-markdown-css": "^2.10.0",
"marked": "^0.3.19",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-ace": "^6.1.1",
"react-addons-css-transition-group": "^15.6.2",
"react-addons-transition-group": "^15.6.2",
"react-dom": "^16.3.2",
"react-gateway": "^3.0.0",
"react-md": "^1.3.1",
"react-router": "^3.2.1",
"superagent": "^3.8.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"node-sass": "^4.9.0",
"prettier": "^1.12.1",
"webpack": "^4.8.3"
}
}