-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "redux-rest-services",
"version": "0.2.7",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest --coverage && ./cc-test-reporter format-coverage -t lcov coverage/lcov.info && ./cc-test-reporter upload-coverage -r 1fd91f489899d2088d44a14da8f7e25a933123cd58e81bec0ea1b2bcd3332638",
"test:watch": "jest --watchAll",
"build": "babel src -d dist",
"prepublish": "npm run build",
"release": "np"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"np": "^6.0.0",
"redux": "^4.0.4",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0"
},
"peerDependencies": {
"redux": "4.x",
"redux-thunk": "2.x"
},
"dependencies": {
"fastest-validator": "^0.6.18",
"isomorphic-fetch": "^2.2.1",
"qs": "^6.9.0",
"slugify": "^1.3.5"
}
}