-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "node-pumi",
"version": "1.0.0",
"description": "API Server for querying administrative regions in Cambodia including Provinces, Districts, Communes and Villages.",
"main": "index.js",
"scripts": {
"dev": "nodemon index.ts",
"start": "node build/index.js",
"build": "tsc --project ./",
"test": "jest --watch",
"to-json": "ts-node src/JsonConverter/convert_all.ts"
},
"author": "@kruyvanna",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"js-yaml": "^4.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.21",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.31",
"@types/node-schedule": "^1.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"engines": {
"node": "14.x",
"yarn": "1.22.5"
}
}