-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.36 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
{
"name": "@impler/shared",
"version": "1.9.0",
"description": "Reusable types and classes to shared between apps and libraries",
"license": "MIT",
"author": "implerhq",
"repository": "https://github.com/implerhq/impler.io",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"private": true,
"keywords": ["impler", "implerhq", "data-import", "excel-import", "csv-import"],
"files": ["dist", "package.json"],
"scripts": {
"start": "npm run start:dev",
"prebuild": "rimraf dist",
"build": "cross-env node_modules/.bin/tsc -p tsconfig.build.json",
"build:watch": "cross-env node_modules/.bin/tsc -p tsconfig.build.json -w --preserveWatchOutput",
"start:dev": "pnpm build:watch",
"precommit": "lint-staged",
"lint": "eslint src",
"lint:fix": "pnpm lint -- --fix"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@types/uuid": "^9.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.8.3"
},
"dependencies": {
"@impler/client": "workspace:^",
"sax": "^1.4.1",
"uuid": "^9.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["prettier --ignore-path .eslintignore --write"],
"{*.json,.{babelrc,eslintrc,prettierrc,stylelintrc}}": [
"prettier --ignore-path .eslintignore --parser json --write"
],
"*.{html,md,yml}": ["prettier --ignore-path .eslintignore --single-quote --write"]
}
}