-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.77 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
{
"name": "@pota/vanilla-template",
"version": "1.1.2",
"bugs": {
"url": "https://github.com/mediamonks/pota/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mediamonks/pota.git",
"directory": "templates/vanilla"
},
"license": "MIT",
"author": "frontend.monks",
"type": "module",
"scripts": {
"dev": "pota dev",
"build": "pota build",
"postinstall": "npx patch-package",
"typecheck": "tsc --project tsconfig.json --noEmit --noUnusedLocals",
"fix": "run-s fix:* && npm run format",
"fix:eslint": "npm run lint:eslint -- --fix",
"format": "prettier \"**/*.{js,jsx,ts,tsx,scss,md,json}\" --write --loglevel warn",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ext .ts,.tsx --cache --cache-location node_modules/.cache/.eslintcache",
"rsync": "rsync -avPx dist/* ${npm_package_name}@${npm_package_config_host}:~/public/ --delete"
},
"config": {
"host": "TODO: Add a host name."
},
"browserslist": [
"last 2 versions",
"not ie <= 11, not ie_mob <= 11",
"not dead"
],
"prettier": "@mediamonks/prettier-config",
"eslintConfig": {
"extends": "@mediamonks/eslint-config-base",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"devDependencies": {
"@mediamonks/eslint-config-base": "^2.0.0",
"@mediamonks/prettier-config": "^1.0.0",
"@types/node": "^17.0.21",
"eslint": "^8.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
},
"create-pota": {
"scripts": {
"builders": [
"@pota/webpack-scripts",
"@pota/vite-scripts"
]
}
},
"engines": {
"node": ">=16",
"npm": ">=7",
"yarn": "unsupported"
}
}