-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "shipping-calculator",
"version": "1.0.0",
"description": "Shipping calculator service using Australia Post API",
"main": "dist/app.js",
"scripts": {
"start": "node -r dotenv/config dist/app.js",
"dev": "ts-node-dev --respawn --transpile-only -r dotenv/config src/app.ts",
"build": "./node_modules/.bin/tsc",
"lint": "eslint . --ext .ts",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"postinstall": "npm run build"
},
"keywords": [
"shipping",
"calculator",
"australia-post"
],
"author": "blendtwenty",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"readline": "^1.3.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
}
}