-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 809 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 809 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
{
"name": "@flyde/invoices-example",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": true,
"flyde": {},
"scripts": {
"start": "concurrently 'ts-node-dev --respawn src/index.ts'",
"build": "rm -rf dist && tsc -p ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@flyde/dev-server": "^1.0.10",
"@flyde/stdlib": "^1.0.1",
"@types/cuid": "^1.3.0",
"@types/express": "^4.16.1",
"@types/node": "^11.10.5",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"cuid": "^2.1.8",
"express": "^4.16.4",
"forever": "^3.0.0",
"typescript": "^4.0.0"
},
"devDependencies": {
"ts-node-dev": "^1.0.0-pre.32"
},
"release-it": {
"npm": false
}
}