forked from experiandataquality/GlobalIntuitive
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1009 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1009 Bytes
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
{
"name": "experian-address-validation",
"version": "2.0.0",
"license": "Apache-2.0",
"author": "Experian",
"contact": "https://github.com/experianplc",
"url": "https://github.com/experianplc/Experian-Address-Validation",
"repository": {
"type": "git",
"url": "git+https://github.com/experianplc/Experian-Address-Validation.git"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"serialize-javascript": "^7.0.4",
"ts-loader": "^9.2.6"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"copy-webpack-plugin": "^14.0.0",
"eslint": "^8.9.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"webpack": "^5.105.2",
"webpack-cli": "^4.10.0"
},
"scripts": {
"build": "webpack --mode production",
"lint": "eslint . --ext .ts",
"dev": "tsx src/server.ts",
"start": "node dist/server.js"
}
}