forked from RESTEDClient/RESTED
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.97 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-aps",
"title": "RESTED APS",
"id": "rested-aps@restedclient",
"homepage": "https://github.com/odin-public/RESTED-APS",
"description": "A REST client for the rest of us, with APS features",
"author": "Espen Henriksen",
"license": "MIT",
"version": "0.0.9",
"main": "./main.js",
"permissions": {
"multiprocess": true
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watchman --watchAll",
"test:snapshot": "jest --updateSnapshot",
"test:debugger": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"eslint": "eslint src test",
"eslint:fix": "eslint --fix src test",
"start": "npm run dev -- -w",
"dev": "webpack --color --progress",
"build": "webpack --color --progress --env.production",
"precommit": "echo Please wait while tests run && npm run eslint && npm test"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"clipboard-polyfill": "^2.4.6",
"fuzzysort": "^1.0.4",
"immutable": "^3.8.2",
"localforage": "^1.5.6",
"localforage-webextensionstorage-driver": "^1.1.2",
"lodash.flow": "^3.5.0",
"oauth-1.0a": "^2.2.4",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-autosuggest": "^9.3.3",
"react-bootstrap": "^0.32.1",
"react-bootstrap-typeahead": "^3.1.3",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.2.0",
"react-highlight": "briancappello/react-highlight#react-v16-compiled",
"react-immutable-proptypes": "^2.1.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-form": "^7.2.3",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"styled-components": "^3.1.6",
"xml-formatter": "^1.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-exponentiation-operator": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"husky": "^0.14.3",
"jest": "^22.2.2",
"jest-enzyme": "^4.2.0",
"react-dnd-test-backend": "^2.5.4",
"react-test-renderer": "^16.2.0",
"remote-redux-devtools": "^0.5.12",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^3.11.0",
"whatwg-fetch": "^2.0.3"
}
}