forked from FlatFilers/flatfile-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.12 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.12 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@flatfile/plugins",
"version": "0.0.0",
"description": "A library of open-source plugins for developers working with the Flatfile Platform.",
"type": "module",
"engines": {
"node": ">=16"
},
"workspaces": [
"bundlers/*",
"config/*",
"convert/*",
"enrich/*",
"extract/*",
"export/*",
"flatfilers/*",
"import/*",
"plugins/*",
"support/*",
"utils/*",
"validate/*"
],
"scripts": {
"clean": "find ./ '(' -name 'node_modules' -o -name 'dist' -o -name '.turbo' ')' -type d -exec rm -rf {} +",
"build": "turbo build",
"build:prod": "turbo build:prod",
"build:clean": "npm run clean && npm i && turbo build",
"build:prod:clean": "npm run clean && npm i && turbo build:prod",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:e2e": "turbo run test:e2e --concurrency 1",
"lint": "prettier --check **/*.ts",
"format": "prettier --log-level warn --write **/*.ts",
"changeset": "changeset",
"changeset-apply": "changeset version",
"release": "NODE_ENV=production turbo build && changeset publish",
"checks": "turbo checks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlatFilers/flatfile-plugins.git"
},
"keywords": [
"flatfile",
"data",
"typescript",
"node.js"
],
"author": "Flatfile, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/FlatFilers/flatfile-plugins/issues"
},
"homepage": "https://github.com/FlatFilers/flatfile-plugins#readme",
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@changesets/cli": "^2.26.1",
"@flatfile/listener": "^1.1.0",
"@flatfile/utils-testing": "^0.3.1",
"@octokit/rest": "^21.0.2",
"@types/node": "^20.2.5",
"dotenv": "^16.4.5",
"dotenv-expand": "^10.0.0",
"dotenv-flow": "^3.2.0",
"prettier": "^3.2.5",
"publint": "^0.2.12",
"turbo": "^1.10.2",
"typescript": "^5.0.4"
},
"optionalDependencies": {
"@flatfile/changelog": "^1.0.3",
"@rollup/rollup-linux-x64-gnu": "^4.8.0"
},
"dependencies": {
"@flatfile/api": "^1.13.0"
}
}