-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.63 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
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/FlatFilers/flatfile-core-libraries.git"
},
"workspaces": [
"packages/*",
"packages/angular/*",
"apps/*",
"cfg/*"
],
"scripts": {
"build": "turbo run build ",
"dev": "turbo run dev --parallel --continue",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .parcel-cache",
"clean:make": "npm run clean && npm i && npm run build && npm i",
"make": "npm i && npm run build && npm i",
"test": "turbo run test",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,jsx,ts,tsx,md}\"",
"changeset": "changeset",
"changeset-apply": "changeset version",
"release": "turbo run build && changeset publish",
"example:reuse-space": "npm run example:reuse-space -w apps/react/app"
},
"devDependencies": {
"@changesets/cli": "^2.23.0",
"@flatfile/eslint-config-platform-sdk": "*",
"@octokit/rest": "^21.0.2",
"@types/jest": "^28.1.4",
"@types/node": "^18.11.9",
"@types/rollup-plugin-node-globals": "^1.4.1",
"dotenv": "^16.4.5",
"eslint": "^8.18.0",
"flatfile": "*",
"jest": "^28.1.2",
"node-fetch": "2.6.7",
"prettier": "^2.7.1",
"remeda": "^0.0.35",
"ts-jest": "^28.0.5",
"turbo": "^1.9.8",
"typescript": "~5.2.0"
},
"dependencies": {
"esbuild-loader": "^2.20.0",
"rollup": "^2.79.1",
"smob": "^1.5.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"optionalDependencies": {
"@flatfile/changelog": "^1.0.3"
},
"overrides": {
"semver": "^7.5.3"
}
}