forked from ElMassimo/iles
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.3 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "root",
"private": true,
"scripts": {
"build:all": "pnpx nx run-many --target=build --all --exclude docs --exclude vue-blog",
"lint:all": "pnpx nx run-many --target=lint --all",
"dev": "pnpm -r --parallel --filter packages run dev",
"docs": "npm -C docs run dev",
"docs:build": "npm -C docs run build",
"docs:now": "npm -C docs run now",
"docs:check": "npm -C docs run check",
"blog": "npm run -C playground/the-vue-point dev",
"blog:build": "npm run -C playground/the-vue-point build",
"blog:now": "npm run -C playground/the-vue-point now",
"blog:check": "npm -C playground/the-vue-point run check",
"release": "node scripts/release",
"changelog": "node scripts/changelog",
"test": "packages/iles/bin/iles.js test"
},
"devDependencies": {
"@mussi/eslint-config": "^0.5.1",
"@mussi/stylelint-config": "^0.1.1",
"@nrwl/cli": "^13.8.1",
"@nrwl/nx-cloud": "^13.1.4",
"@nrwl/tao": "^13.8.1",
"@nrwl/workspace": "^13.8.1",
"iles": "*",
"concurrently": "^6.4.0",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"eslint": "^7.32.0",
"execa": "^5.1.1",
"minimist": "^1.2.5",
"semver": "^7.3.5",
"typescript": "4.4.4",
"vitest": "^0.8.5"
},
"resolutions": {
"eslint-plugin-vue": "7.17.0",
"typescript": "4.4.4"
},
"eslintConfig": {
"extends": "@mussi/eslint-config",
"globals": {
"$ref": "readonly",
"$computed": "readonly",
"$shallowRef": "readonly",
"$$": "readonly",
"$": "readonly",
"usePage": "readonly",
"useRoute": "readonly",
"useHead": "readonly",
"definePageComponent": "readonly"
},
"ignorePatterns": [
"dist",
"node_modules",
"packages/iles/turbo.js",
"docs/cypress"
],
"rules": {
"prefer-const": "off",
"no-unused-vars": "off",
"import/named": "off",
"import/first": "off",
"no-restricted-syntax": "off",
"no-use-before-define": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": "off",
"vue/attribute-hyphenation": [
"warn",
"never",
{
"ignore": [
"http-equiv"
]
}
]
}
}
}