-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.58 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
{
"name": "toggl-balance",
"version": "0.1.0",
"description": "App for tracking work balance using Toggl API",
"scripts": {
"clean": "rimraf build",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"stats": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --json > build/stats.json",
"start": "cross-env NODE_ENV=development node dev-server.js",
"test": "jest --watch",
"test:single": "jest --coverage",
"lint": "eslint app"
},
"repository": {
"type": "git",
"url": "https://github.com/straku/toggl-balance.git"
},
"keywords": [
"toggl",
"balance",
"time tracking"
],
"author": "Łukasz Strączyński <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/straku/toggl-balance/issues"
},
"devDependencies": {
"autoprefixer": "6.4.1",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-plugin-transform-es2015-modules-commonjs": "6.14.0",
"babel-plugin-transform-flow-strip-types": "6.14.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"connect-history-api-fallback": "1.3.0",
"copy-webpack-plugin": "3.0.1",
"cross-env": "2.0.1",
"css-loader": "0.24.0",
"eslint": "3.4.0",
"eslint-config-airbnb": "10.0.1",
"eslint-import-resolver-webpack": "0.5.1",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-import": "1.14.0",
"eslint-plugin-jsx-a11y": "2.2.1",
"eslint-plugin-react": "6.2.0",
"express": "4.14.0",
"extract-text-webpack-plugin": "1.0.1",
"jest-cli": "15.1.1",
"node-sass": "3.8.0",
"postcss": "5.1.2",
"postcss-loader": "0.11.1",
"react-hot-loader": "3.0.0-beta.2",
"rimraf": "2.5.4",
"sass-loader": "4.0.1",
"style-loader": "0.13.1",
"webpack": "2.1.0-beta.14",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.12.2"
},
"dependencies": {
"axios": "0.14.0",
"classnames": "2.2.5",
"history": "3.2.0",
"lodash": "4.15.0",
"moment": "2.14.1",
"react": "15.3.1",
"react-dom": "15.3.1",
"react-redux": "4.4.5",
"react-router": "2.7.0",
"react-router-transition": "0.0.6",
"rebass": "0.3.1",
"redux": "3.5.2",
"redux-logger": "2.6.1",
"redux-thunk": "2.1.0"
},
"jest": {
"moduleNameMapper": {
"^.+\\.(css|scss)$": "<rootDir>/test/file-mock.js"
},
"collectCoverageFrom": [
"app/**/*.js"
]
}
}