-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 3.17 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
89
90
91
92
93
94
95
{
"name": "redux-restify",
"version": "0.16.4",
"description": "Redux extension for RESTfull api communications and data management",
"dependencies": {
"deep-equal": "^1.0.1",
"lodash": "^4.17.4",
"object-hash": "^1.3.1",
"reduce-reducers": "^0.1.2",
"redux": "^4.0.4",
"redux-batched-actions": "^0.1.6",
"redux-thunk": "^2.3.0",
"reselect": "^2.5.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.3",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@types/redux": "^3.6.0",
"cross-env": "^3.2.3",
"file-loader": "^0.10.1",
"babel-loader": "^8.0.6",
"babel-eslint": "^7.1.1",
"babel-plugin-resolver": "^1.1.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"glob": "^7.0.6",
"husky": "^0.11.4",
"isparta": "^4.0.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-ajax": "^3.2.0",
"jasmine-core": "^2.8.0",
"jasmine-enzyme": "^1.2.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"parcel-bundler": "^1.12.3",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-verbose-reporter": "^0.0.6",
"karma-webpack": "^2.0.4",
"slimerjs": "^0.906.1",
"source-map-support": "^0.4.2",
"typescript": "^3.7.2",
"webpack-bundle-analyzer": "^3.5.0",
"webpack": "^4.40.1",
"webpack-cli": "^3.3.8"
},
"scripts": {
"precommit": "npm run lint",
"test": "cross-env NODE_ENV=testing karma start",
"lint": "npm run jslint",
"jslint": "eslint src/ --ext .js",
"ts:defs": "tsc --declaration --emitDeclarationOnly -p tsconfig.json",
"build": "npm run ts:defs && cross-env BABEL_DISABLE_CACHE=1 NODE_ENV=production webpack",
"build-ts": "tsc",
"build-parcel": "parcel build src/index.js",
"start": "node server.js"
},
"main": "lib/index.js",
"types": "src/index.d.ts",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/DeyLak/redux-restify"
},
"keywords": [
"redux",
"rest"
],
"author": "DeyLak",
"license": "MIT"
}