-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1017 Bytes
/
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
{
"name": "carrier-api-with-rates",
"description": "Sample carrier app with Native Rating",
"version": "1.0.0",
"appId": "e1c0ef7f-0ac3-4b75-96ca-e224022b942f",
"author": {
"email": "[email protected]",
"name": "ShipEngine",
"url": "https://connect.shipengine.com"
},
"connect": {
"version": 4
},
"dependencies": {
"@shipengine/connect-carrier-api": "^4.0.0",
"@shipengine/connect-runtime": "^4.0.0"
},
"devDependencies": {
"@shipengine/connect": "^4.2.0",
"@types/node": "^20.2.5",
"ts-loader": "^9.2.8",
"typescript": "^5.1.3",
"webpack": "^5.70.0",
"webpack-cli": "^5.1.1",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"ShipEngine",
"carrier app"
],
"main": "lib/index.js",
"private": true,
"scripts": {
"build": "tsc",
"bundle": "webpack --config webpack.config.js",
"start": "connect start",
"watch": "tsc --watch"
},
"types": "lib/index.ts"
}