-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.16 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.16 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
78
79
80
81
82
83
{
"name": "packsy",
"version": "0.2.5",
"description": "Start development of a package with pre-defined eslint, prettier, babel and rollup configuration",
"author": "Markus Wetzel <markuswetzel@gmx.net>",
"license": "MIT",
"keywords": [
"package development",
"eslint",
"prettier",
"babel",
"rollup"
],
"repository": {
"type": "git",
"url": "https://github.com/ProAI/packsy.git"
},
"bugs": {
"url": "https://github.com/ProAI/packsy/issues"
},
"bin": {
"eslint": "./src/scripts/lint.js",
"packsy": "./src/scripts/packsy.js"
},
"scripts": {
"prepublishOnly": "node ./src/scripts/validate.js"
},
"files": [
"src",
"config-eslint.js",
"config-prettier.js"
],
"dependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.28.6",
"@babel/eslint-parser": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"cross-spawn": "^7.0.6",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^4.3.8",
"lint-staged": "^16.2.7",
"lodash.camelcase": "^4.3.0",
"micromatch": "^4.0.8",
"mkdirp": "^3.0.1",
"npm-which": "^3.0.1",
"prettier": "^3.8.0",
"read-package-up": "^12.0.0",
"rimraf": "^6.1.2",
"rollup": "^4.55.1",
"typescript": "^5.9.3",
"yargs-parser": "^22.0.0"
},
"peerDependencies": {
"typescript": ">= 5"
},
"husky": {
"hooks": {
"pre-commit": "node ./src/scripts/pre-commit.js"
}
},
"engines": {
"node": ">= 16",
"npm": ">= 8"
}
}