-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "@a9g/plop-generator-react-atomic-component",
"version": "0.0.5",
"description": "plop generator react atomic component",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"author": "André Hoendgen <[email protected]> (andre-hoendgen.de)",
"license": "MIT",
"repository": "https://github.com/ahoendgen/plop-generator-react-atomic-component",
"keywords": [
"atomic",
"typescript",
"plop",
"plop-pack",
"plop-generator",
"react"
],
"files": [
"dist"
],
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"postbuild": "cp -r src/templates dist/templates",
"pretest": "npm run lint && tsc --noEmit",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md,json}\"",
"posttest": "npm run format",
"prepare": "husky install",
"prepublishOnly": "rimraf dist && run-s build",
"lint": "eslint . --cache --fix --ext .ts,.tsx"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.3"
},
"lint-staged": {
"*.{ts,tsx,css,md,json,js}": "prettier --write"
},
"dependencies": {
"node-plop": "^0.31.0"
},
"volta": {
"node": "16.13.1",
"yarn": "1.22.17"
},
"publishConfig": {
"access": "public"
}
}