forked from FlatFilers/platform-sdk-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.39 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.39 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
{
"name": "@flatfile/platform-sdk-starter",
"version": "0.0.0",
"description": "Basic starter project for the Flatfile Platform SDK",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/FlatFilers/platform-sdk-starter.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/FlatFilers/platform-sdk-starter/issues"
},
"homepage": "https://github.com/FlatFilers/platform-sdk-starter#readme",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"deploy": "flatfile publish ./src/index.ts",
"lint": "TIMING=1 eslint \"src/**/*.{ts,tsx,js,jsx}\" --fix",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"test": "jest --runInBand --detectOpenHandles --forceExit --passWithNoTests"
},
"devDependencies": {
"@flatfile/cli": "^0.2.0",
"@flatfile/configure": "^0.3.4",
"@flatfile/hooks": "^1.2.0",
"@types/jest": "^28.1.4",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5"
}
}