This repository was archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.62 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.62 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "InstantLogoSearch",
"title": "Instant Logo Search",
"homepage": "http://instantlogosearch.com",
"version": "1.0.1",
"description": "Search & download thousands of logos instantly",
"repository": {
"type": "git",
"url": "git+https://github.com/cameronrohani/InstantLogoSearch.git"
},
"author": {
"name": "kogg",
"email": "team@instantlogosearch.com",
"url": "http://ko.gg"
},
"license": "ISC",
"main": "./index",
"browser": {
"main": "./browser",
"./application": "./application/browser",
"./rollbar": "./rollbar/client"
},
"engines": {
"node": "4.1.2",
"npm": "2.14.4"
},
"scripts": {
"start": "if [ \"$NODE_ENV\" = 'production' ]; then foreman start; else foreman start -f Procfile.dev; fi",
"test": "eslint . --ignore-path .gitignore --ext .js,.jsx",
"clean": "rm -rf dist dump.rdb",
"fix": "npm run stylefmt:fix && npm run eslint:fix",
"postinstall": "if [ \"$NODE_ENV\" = 'production' ]; then npm run browserify && npm run uglify && npm run sorcery && npm run postcss; else npm install instant-logos; fi",
"browserify": "mkdir -p dist/js && browserify $npm_package_browser_main --debug --verbose --extension=.jsx | exorcist dist/js/main.compiled.js.map > dist/js/main.compiled.js",
"stylefmt:fix": "( git diff --staged --name-only | grep \".s\\?css$\" | xargs -I '{}' -n 1 stylefmt {} ) && ( git diff --staged --name-only | grep \".s\\?css$\" | xargs git add )",
"discify": "NODE_ENV=production browserify $npm_package_browser_main --full-paths --extension=.jsx | uglifyjs -c drop_console,warnings=false | discify -O",
"eslint:fix": "( git diff --staged --name-only | grep \".jsx\\?$\" | xargs eslint --fix ) && ( git diff --staged --name-only | grep \".jsx\\?$\" | xargs git add )",
"node": "node --expose-gc $npm_package_main",
"nodemon": "nodemon --ignore dist/ -e js,jsx $npm_package_main",
"postcss": "mkdir -p dist/css && postcss -c postcss.js -o dist/css/main.css main.css",
"postcss:watch": "npm run postcss -- -w",
"sorcery": "sorcery -i dist/js/main.minified.js -o dist/js/main.js && rm dist/js/main.*.js*",
"uglify": "uglifyjs dist/js/main.compiled.js -o dist/js/main.minified.js --in-source-map dist/js/main.compiled.js.map --source-map dist/js/main.minified.js.map --source-map-root ../.. -p relative -c drop_console,warnings=false --stats",
"watchify": "mkdir -p dist/js && watchify $npm_package_browser_main -o dist/js/main.js --debug --verbose --extension=.jsx"
},
"browserify": {
"extension": [
"jsx"
],
"transform": [
"babelify",
[
"envify",
{
"_": "purge"
}
],
"uglifyify"
]
},
"pre-commit": [
"fix",
"test"
],
"devDependencies": {
"disc": "^1.3.2",
"eslint": "^2.13.1",
"eslint-config-xo": "^0.15.2",
"eslint-plugin-react": "^5.2.2",
"nodemon": "^1.9.2",
"pre-commit": "^1.1.3",
"stylefmt": "^3.5.0",
"watchify": "^3.6.1"
},
"dependencies": {
"autoprefixer": "^6.3.6",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.9.0",
"babelify": "^7.3.0",
"body-parser": "^1.15.2",
"browserify": "^13.0.1",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"cssnano": "^3.7.1",
"disable-scroll": "^0.2.6",
"envify": "^3.4.1",
"es6-promisify": "^4.1.0",
"exorcist": "^0.4.0",
"express-react-views": "^0.10.2",
"fast-levenshtein": "^1.1.3",
"feathers": "^2.0.1",
"feathers-client": "^1.3.2",
"feathers-react-redux": "^0.5.0",
"feathers-rest": "^1.4.2",
"filesaverjs": "^0.2.1",
"googleapis": "^9.0.0",
"helmet": "^2.1.1",
"instant-logos": "github:kogg/instant-logos#develop",
"json-stable-stringify": "^1.0.1",
"jszip": "^3.0.0",
"postcss-cachebuster": "^0.1.2",
"postcss-cli": "^2.5.2",
"postcss-import": "^7.1.3",
"postcss-import-url": "^1.0.0",
"postcss-mq-keyframes": "^0.3.0",
"postcss-nested": "^1.0.0",
"postcss-reporter": "^1.3.0",
"postcss-url": "^5.1.2",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-gateway": "^2.2.0",
"react-helmet": "^3.1.0",
"react-modal2": "^3.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"redis": "^2.6.2",
"redux": "^3.5.2",
"redux-actions": "^0.10.0",
"redux-thunk": "^2.1.0",
"request": "^2.72.0",
"reselect": "^2.5.1",
"rollbar": "^0.6.2",
"rollbar-browser": "^1.9.1",
"sitemap": "^1.6.0",
"sorcery": "^0.10.0",
"svg2png": "^3.0.0",
"uglify-js": "^2.6.4",
"uglifyify": "^3.0.2",
"underscore": "^1.8.3",
"whatwg-fetch": "^1.0.0",
"xml": "^1.0.1"
}
}