This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
175 lines (175 loc) · 4.98 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
{
"name": "togglol",
"version": "1.0.0",
"description": "Your alternative Toggl client. For us who can't use Toggl the correct way.!",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"compile": "better-npm-run compile",
"lint": "eslint src tests server",
"lint:fix": "npm run lint -- --fix",
"start": "better-npm-run start",
"dev": "better-npm-run dev",
"dev:no-debug": "better-npm-run run dev -- --no_debug",
"test": "better-npm-run test",
"test:dev": "better-npm-run -- --watch",
"deploy": "better-npm-run deploy",
"deploy:dev": "better-npm-run deploy:dev",
"deploy:prod": "better-npm-run deploy:prod",
"postinstall": "npm run deploy:prod",
"codecov": "cat coverage/*/lcov.info | codecov"
},
"betterScripts": {
"compile": {
"command": "babel-node bin/compile",
"env": {
"DEBUG": "app:*"
}
},
"dev": {
"command": "nodemon --exec babel-node bin/server",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy": {
"command": "npm run clean && npm run compile",
"env": {
"DEBUG": "app:*"
}
},
"deploy:dev": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy:prod": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"start": {
"command": "npm run deploy:prod && node server.js",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"test": {
"command": "babel-node ./node_modules/karma/bin/karma start build/karma.conf",
"env": {
"NODE_ENV": "test",
"DEBUG": "app:*"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gazab/Togglol.git"
},
"author": "Gustav Tonér <[email protected]> (https://www.gazab.se)",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.3.13",
"babel-runtime": "^6.3.19",
"base-64": "^0.1.0",
"better-npm-run": "0.0.8",
"css-loader": "^0.23.0",
"cssnano": "^3.3.2",
"debug": "^2.2.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^1.0.0",
"file-loader": "^0.8.4",
"fs-extra": "^0.30.0",
"globalize": "^0.1.1",
"heroku-ssl-redirect": "0.0.4",
"history": "^2.0.0",
"html-webpack-plugin": "^2.7.1",
"imports-loader": "^0.6.5",
"ip": "^1.1.2",
"json-loader": "^0.5.4",
"koa": "^2.0.0-alpha.3",
"koa-connect-history-api-fallback": "^0.3.0",
"koa-convert": "^1.2.0",
"koa-proxy": "^0.6.0",
"koa-static": "^2.0.0",
"moment": "^2.13.0",
"moment-duration-format": "^1.3.0",
"node-sass": "^3.13.1",
"normalize.css": "^4.1.1",
"postcss-loader": "^0.9.0",
"prop-types": "^15.5.8",
"rc-switch": "^1.4.3",
"rc-time-picker": "^2.0.2",
"react": "^15.0.0",
"react-big-calendar": "^0.15.0",
"react-dnd": "^2.3.0",
"react-dnd-html5-backend": "^2.3.0",
"react-dom": "^15.0.0",
"react-localstorage": "^0.3.0",
"react-modal": "^1.5.2",
"react-month-picker": "^1.1.3",
"react-partial": "^1.1.1",
"react-redux": "^4.0.0",
"react-router": "^2.2.0",
"react-router-redux": "^4.0.0",
"react-select-plus": "^1.0.0-beta14.patch1",
"redux": "^3.0.0",
"redux-combine-actions": "^0.1.2",
"redux-localstorage": "^0.4.0",
"redux-promise-middleware": "^3.0.0",
"redux-thunk": "^2.0.0",
"rimraf": "^2.5.1",
"sass-loader": "^3.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.14",
"whatwg-fetch": "^1.0.0",
"yargs": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^6.0.0-beta.6",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"chai-enzyme": "^0.4.0",
"cheerio": "^0.20.0",
"codecov": "^1.0.1",
"enzyme": "^2.0.0",
"eslint": "^2.4.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.2.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^5.0.0",
"eslint-plugin-standard": "^1.3.1",
"isparta-loader": "^2.0.0",
"karma": "^0.13.21",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack-with-fast-source-maps": "^1.9.2",
"mocha": "^2.2.5",
"nodemon": "^1.8.1",
"react-addons-test-utils": "^15.0.0",
"redbox-react": "^1.2.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.6.0"
}
}