-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.09 KB
/
package.json
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
{
"name": "@perimetre/helpers",
"description": "Our bundle with all of our utilities and reusable helpers",
"version": "3.0.3",
"repository": {
"type": "git",
"url": "git+https://github.com/perimetre/helpers.git"
},
"author": "Perimetre (https://perimetre.co/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/perimetre/helpers/issues"
},
"homepage": "https://github.com/perimetre/helpers#readme",
"main": "dist/cjs/index",
"module": "dist/esm/index",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"engines": {
"node": "20.x"
},
"scripts": {
"start": "nodemon",
"prettier": "prettier --ignore-unknown --write \"**/*\"",
"lint": "eslint . --ext js --ext ts --ext json",
"lint:fix": "npm run lint -- --fix",
"type-check": "tsc --noEmit",
"check-commit": "npm run type-check && npm run lint:fix && npm run prettier",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"prepare": "husky install && npm run build"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@types/node": "^20.12.12",
"csv": "^6.3.9",
"typescript": "^5.4.5"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tsc": "^2.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rollup": "^4.17.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2"
},
"lint-staged": {
"src/**/*": "prettier --ignore-unknown --write",
"src/**/*.ts?(x)": "eslint --fix --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]'"
}
}