-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 892 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
{
"name": "mock-thaipost-api",
"version": "1.0.0",
"description": "",
"main": "lib/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"start": "node lib/server.js",
"build": "tsc -p .",
"start:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptantanis/mock-thaipost-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ptantanis/mock-thaipost-api/issues"
},
"homepage": "https://github.com/ptantanis/mock-thaipost-api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.0.5",
"nodemon": "^2.0.4",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
}
}