-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "sendit",
"version": "1.0.0",
"description": "SendIT is a courier service that helps users deliver parcels to different destinations. SendIT provides courier quotes based on weight categories.",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"start": "webpack --watch & webpack-dev-server --content-base static/ --inline --hot",
"build:prod": "webpack -p",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"setupFiles": [
"./config.js"
],
"testURL": "http://send-it-ke-v2.herokuapp.com/api/v2/parcels/1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koitoror/SendIT.git"
},
"keywords": [
"ES6"
],
"author": "koitoror",
"license": "MIT",
"bugs": {
"url": "https://github.com/koitoror/SendIT/issues"
},
"homepage": "https://github.com/koitoror/SendIT#readme",
"devDependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^1.0.1",
"coveralls": "^3.0.2",
"css-loader": "^1.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"fake-fetch": "^2.1.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"jest": "^23.6.0",
"jest-environment-jsdom": "^24.0.0",
"jest-environment-jsdom-global": "^1.1.1",
"jest-fetch-mock": "^2.1.1",
"liveserver": "^0.1.20",
"node-fetch": "^2.3.0",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"whatwg-fetch": "^3.0.0"
},
"dependencies": {
"watch": "^1.0.2"
}
}