-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.88 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
{
"name": "nucleus-cms",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"clean": "git clean -xdf",
"test": "lerna run test --stream",
"test:fix": "lerna run test --stream -- -u",
"lint": "lerna run lint --stream",
"lint:fix": "lerna run lint --stream -- --fix",
"build": "lerna run build --stream",
"dev": "lerna run dev --stream",
"build_demo": "yarn build && yarn build:demo",
"postinstall": "lerna run postinstall --stream",
"lerna:changed": "lerna changed",
"lerna:version": "lerna version --conventional-commits --exact --yes",
"lerna:publish": "yarn lerna:changed && yarn lerna:version && lerna publish from-package --no-verify-access --yes"
},
"devDependencies": {
"babel-loader": "9.1.3",
"lerna": "8.0.2"
},
"private": true,
"workspaces": [
"packages/*",
"demo/*"
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"plugins": [
"import"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest",
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"rules": {
"import/no-unresolved": "off",
"import/no-named-as-default": "off",
"import/no-anonymous-default-export": "off",
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"parent",
"sibling",
"index"
],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
]
}
},
"dependencies": {
"install-peers": "1.0.4"
},
"packageManager": "yarn@4.0.2"
}