-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
88 lines (88 loc) · 2.9 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": "rested",
"title": "RESTED",
"id": "rested@restedclient",
"homepage": "https://github.com/esphen/RESTED",
"description": "A REST client for the rest of us",
"author": "Espen Henriksen",
"license": "MIT",
"version": "2.5.0",
"main": "./main.js",
"permissions": {
"multiprocess": true
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watchman --watchAll",
"test:snapshot": "jest --update-snapshot",
"test:debugger": "node --debug-brk --inspect ./node_modules/.bin/jest -i",
"eslint": "eslint src test",
"eslint:fix": "eslint --fix src test",
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development webpack --progress --colors --watch",
"build": "cross-env NODE_ENV=production webpack -p --progress",
"precommit": "echo Please wait while tests run && npm run eslint && npm test"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"fuzzysort": "^0.9.3",
"immutable": "^3.8.1",
"localforage": "^1.5.0",
"localforage-webextensionstorage-driver": "^1.2.1",
"lodash.flow": "^3.5.0",
"md5": "^2.2.1",
"react": "^15.4.2",
"react-autosuggest": "^9.0.0",
"react-bootstrap": "^0.30.8",
"react-dnd": "^2.3.0",
"react-dnd-html5-backend": "^2.3.0",
"react-dom": "^15.4.2",
"react-highlight": "^0.9.0",
"react-immutable-proptypes": "^2.1.0",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-form": "^7.0.1",
"redux-saga": "^0.14.3",
"reselect": "^3.0.0",
"styled-components": "^1.4.4",
"uuid-js": "^0.7.5",
"xml-formatter": "^1.0.1"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-exponentiation-operator": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
"babel-preset-env": "^1.2.2",
"babel-preset-react": "^6.23.0",
"coveralls": "^2.12.0",
"cross-env": "^7.0.3",
"enzyme": "^2.8.0",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "latest",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"husky": "^0.13.3",
"jest": "^20.0.4",
"jest-enzyme": "^3.6.1",
"react-addons-test-utils": "^15.4.2",
"react-dnd-test-backend": "^2.3.0",
"react-test-renderer": "^15.4.2",
"redux-devtools": "^3.3.2",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"webpack": "^3.4.0",
"whatwg-fetch": "^2.0.3"
}
}