-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 937 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 937 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
37
{
"name": "canoapi-sample",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"demon": "cross-env ENV=dev nodemon index.ts",
"dev": "cross-env ENV=dev ts-node index.ts",
"start": "cross-env ENV=prod ts-node build/index.js",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dckntm/canoapi-sample.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dckntm/canoapi-sample/issues"
},
"homepage": "https://github.com/dckntm/canoapi-sample#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.22",
"cross-env": "^7.0.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
},
"dependencies": {
"canoapi": "0.0.10"
}
}