types-magic-api 0.1.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +34 -0
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ ### Run API Locally
2
+ > clone project
3
+ > npm i
4
+ > press f5
5
+ ### Docker Build
6
+
7
+ ### How to build docker
8
+
9
+ > docker build -t magic .
10
+
11
+ #### How to Run with env file.
12
+
13
+ > docker run -p 8167:8167 --env-file ./.env magic
14
+
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "types-magic-api",
3
+ "version": "0.1.25",
4
+ "scripts": {
5
+ },
6
+ "description": "magic API",
7
+ "exports": "./dist/server.js",
8
+ "types": "./dist/index.d.ts",
9
+ "keywords": [],
10
+ "author": "ascent24",
11
+ "license": "ISC",
12
+ "jest": {
13
+ "verbose": true,
14
+ "transform": {
15
+ "^.+\\.tsx?$": "ts-jest"
16
+ },
17
+ "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
18
+ "moduleFileExtensions": [
19
+ "ts",
20
+ "tsx",
21
+ "js",
22
+ "jsx",
23
+ "json",
24
+ "node"
25
+ ]
26
+ },
27
+ "files": [
28
+ "dist/**/*.model.d.ts",
29
+ "dist/**/*.entity.d.ts",
30
+ "dist/**/*.model.js",
31
+ "dist/**/*.model.entity.js"
32
+ ],
33
+ "type": "module"
34
+ }