-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"author": "o.tomerr@gmail.com",
"bugs": {
"url": "https://github.com/otomer/web-travel-cautions/issues"
},
"dependencies": {
"@types/express": "^4.17.3",
"@types/morgan": "^1.9.0",
"@types/xml2js": "^0.4.5",
"axios": "^0.19.2",
"cors": "^2.8.5",
"country-iso-2-to-3": "^1.1.0",
"country-iso-3-to-2": "^1.1.0",
"csv": "^5.3.2",
"csv-parse": "^4.10.1",
"csvtojson": "^2.0.10",
"express": "^4.17.1",
"express-force-https": "^1.0.0",
"morgan": "^1.9.1"
},
"description": "",
"devDependencies": {
"@types/node": "^13.9.0",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"homepage": "https://github.com/otomer/web-travel-cautions#readme",
"keywords": [],
"license": "ISC",
"main": "server.js",
"name": "web-travel-cautions",
"repository": {
"type": "git",
"url": "git+https://github.com/otomer/web-travel-cautions.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf ./build/*",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts NODE_ENV=development",
"dist": "mkdir -p dist && cp -R node_modules src server.js public",
"serve": "node build/server.js",
"start": "npm run serve",
"watch-node": "nodemon build/server.js",
"watch-ts": "tsc -w"
},
"version": "1.0.0"
}