-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
82 lines (82 loc) · 2.29 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
{
"name": "wheelmap",
"version": "1.0.0",
"license": "AGPL-3.0",
"dependencies": {
"babel": "^6.3.13",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-runtime": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-incremental": "^3.1.1",
"classnames": "^2.2.3",
"expect": "^1.20.2",
"expect-immutable": "0.0.3",
"history": "^2.0.0",
"immutable": "^3.7.6",
"isomorphic-fetch": "^2.2.1",
"leaflet": "^0.7.7",
"lodash.camelcase": "^4.1.1",
"lodash.every": "^4.4.0",
"lodash.find": "^4.4.0",
"lodash.foreach": "^4.3.0",
"lodash.forown": "^4.2.0",
"lodash.size": "^4.0.6",
"lodash.snakecase": "^4.0.1",
"lodash.sortby": "^4.5.0",
"lodash.words": "^4.1.1",
"promise": "^7.1.1",
"query-string": "^3.0.3",
"react": "^0.14.5",
"react-addons-test-utils": "^0.14.5",
"react-dom": "^0.14.5",
"react-leaflet": "^0.10.0",
"react-loader": "^2.0.0",
"react-redux": "^4.0.0",
"react-router": "^2.0.0-rc5",
"react-select": "^0.8.2",
"redux": "^3.0.4",
"redux-actions": "^0.9.0",
"redux-promise": "^0.5.1",
"redux-saga": "^0.9.1",
"redux-thunk": "^1.0.0",
"require-dir": "^0.3.0",
"reselect": "^2.0.2"
},
"devDependencies": {
"babel-jest": "^12.1.0",
"eslint": "^3.6.0",
"eslint-config-blogfoster": "1.5.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.3.0",
"jasmine-core": "^2.4.1",
"jasmine-immutable-matchers": "^1.0.1",
"jest-cli": "^12.1.1"
},
"repository": {
"type": "git",
"url": "git://github.com/sozialhelden/wheelmap.git"
},
"engines": {
"node": ">= 4.1"
},
"scripts": {
"test": "node_modules/.bin/jest",
"eslint": "eslint app/assets/javascripts"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/app/assets/javascripts/jest/setupTestFramework.js",
"testPathDirs": [
"<rootDir>/app/assets/javascripts"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/*"
]
}
}