-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
121 lines (121 loc) · 4.38 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
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
{
"name": "eureka-server",
"description": "Eureka is a progressively enhanced Media Browser Component.",
"version": "0.0.0",
"private": true,
"license": "BSD-3-Clause",
"author": {
"name": "JP de Vries",
"email": "[email protected]",
"url": "https://devries.jp/"
},
"proxy": "http://localhost:3001/",
"keywords": [
"react",
"redux",
"media",
"browse",
"eureka",
"MODX",
"a11y",
"data",
"table",
"markuptips"
],
"main": "server.js",
"files": [
"client/bower.json",
"client/build/assets/css/",
"client/build/assets/img/",
"client/build/assets/js/",
"client/build/static/",
"client/src/"
],
"homepage": "https://eureka.markup.tips",
"bugs": {
"url": "https://github.com/jpdevries/eureka/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/jpdevries/eureka.git"
},
"dependencies": {
"adm-zip": "^0.4.7",
"babel-cli": "^6.24.0",
"babel-core": "6.14.0",
"babel-plugin-react-intl": "^2.3.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"eureka-browser": "*",
"express": "4.13.3",
"express-formidable": "^1.0.0",
"express-minify-html": "^0.10.0",
"filesize": "^3.5.6",
"forever": "^0.15.3",
"formidable": "^1.1.1",
"fs": "0.0.2",
"html-entities": "^1.2.0",
"image-size": "^0.5.1",
"mousetrap": "^1.6.1",
"multiparty": "^4.1.3",
"path-parse": "^1.0.5",
"quickthumb": "github:jpdevries/node-quickthumb",
"react": "^15.4.2",
"react-addons-update": "^15.5.2",
"react-cropperjs": "^1.2.5",
"react-dom": "^15.4.2",
"react-dropzone": "^3.12.2",
"react-intl": "^2.2.3",
"react-masonry-component": "^5.0.5",
"react-redux": "^5.0.3",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"rmdir": "^1.2.0"
},
"engines": {
"node": "6.11.1"
},
"scripts": {
"oldprestart": "yarn && cd ./client && yarn && cd ../",
"start": "yarn build && yarn prod",
"postinstall": "yarn fetchsourcesbig",
"fetchsources": "rm -rf sources.zip && rm -rf sources && wget http://j4p.us/2R2s3v1y060o/sources.zip && unzip sources.zip && ls && ls sources && mv sources.zip prod && cd ./prod && rm -rf sources && unzip sources.zip && rm -rf sources.zip && ls && ls sources && cd ../",
"fetchsourcesbig": "rm -rf sources.zip && rm -rf sources && wget http://j4p.us/2R2s3v1y060o/sources.zip && unzip sources.zip && ls && ls sources && mv sources.zip prod && cd ./prod && rm -rf sources && unzip sources.zip && rm -rf sources.zip && ls && ls sources && cd ../",
"buildserver": "babel ./server.js -d prod",
"fetcheureka": "cd ./prod && npm install eureka-browser && cd ../",
"build": "yarn buildserver && babel ./client/src -d ./client/dist && yarn i18n && cp -R ./client/dist ./prod/client && cp -R client/build prod/client && rm -rf prod/client/i18n && mkdir prod/client/i18n && cp -R client/i18n/* prod/client/i18n && rm -rf i18n",
"testbuild": "yarn buildserver && cp -R client/build prod/client",
"buildclient": "cd client && yarn && yarn build && cd ../",
"installclient": "cd client && yarn && cd ../",
"test": "cd client && yarn && yarn test && cd ../",
"i18n": "cd client && yarn i18n && cd ../",
"oldbuild": "yarn buildserver && babel ./client/src -d prod/client/src && cp -R client/build prod/client",
"serve": "babel-node server.js",
"server": "yarn serve",
"prod": "NODE_ENV=production node prod/server.js",
"prodforever": "NODE_ENV=production forever start prod/server.js",
"client": "babel-node start-client.js",
"herokupush": "git push heroku release-2.0:master",
"herokuforce": "git push heroku release-2.0:master --force",
"heroku": "yarn herokupush",
"crowdinup": "crowdin upload sources",
"crowdindown": "crowdin download",
"pretag": "cd ./client && yarn pretag && cd../",
"dev": "echo \"This command has been deprecated. Use 'npm start'\" && exit 1",
"lint": "eslint ."
},
"devDependencies": {
"concurrently": "3.1.0",
"eslint": "3.15.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.9.0",
"react-test-renderer": "^15.4.2"
}
}