-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "@sedona-cms/module-template",
"version": "1.0.0",
"description": "Sedona CMS Module Template",
"main": "lib/index.js",
"scripts": {
"dev": "nuxt --port 3000 --config-file dev/nuxt.config.js",
"dev:build": "nuxt build --config-file dev/nuxt.config.js",
"dev:build:analyze": "nuxt build --analyze --config-file dev/nuxt.config.js",
"dev:start": "nuxt start --config-file dev/nuxt.config.js",
"eslint": "eslint --fix 'src/**/*.{js,ts,tsx}'",
"watch": "make watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sedona-cms/module-template.git"
},
"keywords": [],
"author": "Ivan Kalinichenko <kalinichenko@constlab.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sedona-cms/module-template/issues"
},
"homepage": "https://github.com/sedona-cms/module-template#readme",
"devDependencies": {
"@nuxt/types": "^2.13.3",
"@nuxtjs/bulma": "^1.3.0",
"@sedona-cms/eslint-config": "^1.1.6",
"@types/node": "^14.0.25",
"npm-self-link": "^1.1.7",
"nuxt": "^2.13.3",
"prettier": "^2.0.5",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.7"
},
"peerDependencies": {
"@sedona-cms/core": "^1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx,vue,md}": [
"prettier --write"
],
"src/**/*.{js,ts,tsx}": [
"prettier --write",
"npm run eslint"
],
"dev/**/*.{js,vue,json}": [
"prettier --write"
]
}
}