-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
181 lines (181 loc) · 6.36 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"author": "focus@kleegroup.com",
"name": "focus-demo-app",
"description": "Focus demonstration application",
"version": "0.17.0",
"homepage": "https://github.com/KleeGroup/focus-demo-app",
"repository": {
"type": "git",
"url": "https://github.com/KleeGroup/focus-demo-app.git"
},
"engines": {
"node": "0.4.x",
"npm": "2.14.x"
},
"scripts": {
"bundle": "better-npm-run bundle",
"build": "npm run bundle",
"electron": "ENVIRONMENT=DEV electron ./electron.js",
"start": "npm run start:npm",
"start:local": "better-npm-run webpack-dev-server-local-focus",
"start:npm": "better-npm-run webpack-dev-server-npm-focus",
"start:api": "better-npm-run api-server",
"watch": "better-npm-run watch",
"mocked-api": "node api/index.js",
"profile": "better-npm-run profile",
"test": "return 0",
"gh-pages": "git fetch && git reset --hard origin/develop && git clean -f ./** && git branch -D gh-pages && git checkout -b gh-pages && npm run bundle && git add . && git commit -m 'gh-pages release' && git push --set-upstream origin gh-pages -f && git checkout develop"
},
"main": "app/index.js",
"babel": {
"presets": [
"focus"
]
},
"betterScripts": {
"bundle": {
"command": "webpack --progress",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"API_HOST": "146.185.134.136",
"API_PORT": 8080,
"OUTPUT_DIR": "./",
"OUTPUT_PUBLIC_PATH": "./",
"GENERATE_HTML": false,
"LOCAL_FOCUS": false,
"LEGACY_SEARCH_API": false,
"DEV": false,
"node_env": "production",
"BABEL_ENV": "production",
"BASE_URL": "/"
}
},
"profile": {
"command": "webpack --progress --json --profile > profile.json",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"API_HOST": "localhost",
"API_PORT": 8080,
"OUTPUT_DIR": "./public",
"LOCAL_FOCUS": true,
"LEGACY_SEARCH_API": false
}
},
"watch": {
"command": "webpack --watch",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"API_HOST": "localhost",
"API_PORT": 8080,
"OUTPUT_DIR": "./public",
"LOCAL_FOCUS": false,
"LEGACY_SEARCH_API": false,
"BASE_URL": "/"
}
},
"webpack-dev-server-local-focus": {
"command": "node ./dev-server.js",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"API_HOST": "localhost",
"API_PORT": 8080,
"OUTPUT_DIR": "./public",
"LOCAL_FOCUS": true,
"LEGACY_SEARCH_API": false,
"SOURCE_MAPS": false,
"BASE_URL": "/"
}
},
"api-server": {
"command": "node ./api.js",
"env": {
"ENTRY_FILE_PATH": "./app/index",
"PACKAGE_JSON_PATH": "../",
"PAGE_TITLE": "Focus comments dev page",
"MINIMIFY": false,
"API_PORT": 9999,
"REDUX_DEBUG": true
}
},
"webpack-dev-server-npm-focus": {
"command": "node ./dev-server.js",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"API_HOST": "localhost",
"API_PORT": 8080,
"OUTPUT_DIR": "./public",
"LOCAL_FOCUS": false,
"LEGACY_SEARCH_API": false,
"SOURCE_MAPS": false,
"BASE_URL": "/"
}
}
},
"license": "MIT",
"dependencies": {
"focus-comments": "^0.3.7",
"focus-components": "^2.1.1",
"focus-core": "^2.1.1",
"focus-devtools": "^0.3.5",
"focus-notifications": "^0.2.0-rc6",
"immutable": "^3.7.2",
"jquery": "3.0.0-alpha1",
"lodash": "^3.10.1",
"moment": "^2.10.3",
"native-promise-only": "^0.8.0-a",
"numeral": "^1.5.3",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-router": "^2.6.0"
},
"devDependencies": {
"animate.css": "^3.4.0",
"autoprefixer-loader": "^3.2.0",
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-core": "^6.7.6",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.4",
"babel-preset-focus": "0.5.2",
"babel-runtime": "^6.3.19",
"better-npm-run": "0.0.5",
"body-parser": "^1.14.1",
"css-loader": "^0.21.0",
"electron-prebuilt": "0.36.9",
"eslint": "1.5.1",
"eslint-config-focus": "0.3.0",
"eslint-plugin-filenames": "0.1.1",
"eslint-plugin-react": "3.5.0",
"exports-loader": "^0.6.2",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"faker": "^3.1.0",
"font-awesome": "^4.5.0",
"json-loader": "^0.5.3",
"material-design-icons-iconfont": "^2.0.4",
"migration-tool": "^0.1.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.1.2",
"source-map-loader": "^0.1.5",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-focus": "^0.11.4"
}
}