-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.33 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.33 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
{
"name": "spendwell",
"version": "0.1.0",
"description": "Personal finance simplified",
"repository": "https://www.github.com/bespoke-digital/spendwell",
"author": "defrex",
"license": "LicenseRef-LICENSE",
"scripts": {
"build-dev": "NODE_ENV=development ./node_modules/.bin/webpack --config=./webpack/dev.config.js",
"build-prod": "NODE_ENV=production ./node_modules/.bin/webpack --config=./webpack/prod.config.js"
},
"jest": {
"moduleDirectories": [
"node_modules",
"client"
],
"unmockedModulePathPatterns": [
"react",
"react-dom",
"lodash",
"enzyme"
],
"moduleNameMapper": {
"^sass/.+$": "utils/test/style-mock.js",
"^.+\\.(eot|svg|ttf|woff|woff2|png|jpg)(\\?v=\\d+\\.\\d+\\.\\d+)?$": "utils/test/file-mock.js"
},
"setupFiles": [
"client/utils/test/import-react.js"
]
},
"dependencies": {
"autoprefixer": "^6.3.1",
"babel": "^6.5.2",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.9.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-systemjs": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-relay-plugin": "^0.9.2",
"bootstrap-sass": "^3.3.6",
"classnames": "^2.1.3",
"core-js": "^1.2.2",
"css-loader": "^0.15.6",
"exports-loader": "^0.6.2",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs": "^0.8.0",
"file-loader": "^0.8.5",
"font-awesome": "^4.5.0",
"history": "^2.0.0-rc2",
"imports-loader": "^0.6.5",
"jquery": "^2.2.1",
"json-loader": "^0.5.4",
"lodash": "^3.10.1",
"modernizr": "^3.3.1",
"modernizr-loader": "0.0.5",
"moment": "^2.11.1",
"moment-timezone": "^0.5.3",
"muicss": "^0.6.0",
"node-sass": "^3.7.0",
"null-loader": "^0.1.1",
"papaparse": "^4.1.2",
"postcss-loader": "^0.8.0",
"promise": "^7.1.1",
"react": "^15.3.0",
"react-addons-css-transition-group": "^15.1.0",
"react-dom": "^15.3.0",
"react-hot-loader": "^1.3.0",
"react-mixin": "^2.0.1",
"react-motion": "^0.4.3",
"react-redux": "^4.4.5",
"react-relay": "^0.9.2",
"react-router": "^2.6.1",
"react-router-relay": "^0.13.3",
"react-static-container": "^1.0.1",
"redux": "^3.5.2",
"relay-decorator": "^1.0.3",
"sass-loader": "^3.1.2",
"style-loader": "^0.12.4",
"webpack": "^1.12.14",
"whatwg-fetch": "^0.11.0",
"wolfy87-eventemitter": "^4.3.0",
"xml2js": "^0.4.16",
"xmlbuilder": "4.2.0"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-preset-react-hmre": "^1.1.1",
"concurrently": "^2.0.0",
"enzyme": "^2.3.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-standard": "^1.3.2",
"identity-obj-proxy": "^2.0.0",
"jasmine-core": "^2.4.1",
"jest-cli": "^13.0.0",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^15.1.0",
"sass-lint": "^1.6.2",
"standard": "^7.1.2",
"webpack-dev-server": "^1.14.1"
}
}