forked from sitegeist/sitegeist-neos-base-distribution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.37 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
83
84
85
86
87
88
89
90
91
92
93
94
{
"license": "MIT",
"private": true,
"workspaces": [
"DistributionPackages/*"
],
"devDependencies": {
"@sitegeist/es-neos-stylelint": "^2.0.2",
"@sitegeist/eslint-config-es-neos-eslint": "^2.0.2",
"@types/css-minimizer-webpack-plugin": "^1.1.3",
"@types/jest": "^26.0.22",
"@types/mini-css-extract-plugin": "^1.2.3",
"@types/node": "^14.14.36",
"@types/terser-webpack-plugin": "^5.0.3",
"autoprefixer": "^10.2.5",
"browserslist": "^4.16.3",
"css-loader": "^5.2.0",
"css-minimizer-webpack-plugin": "^1.3.0",
"eslint": "^7.22.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"mini-css-extract-plugin": "^1.3.9",
"node": "^15.10.0",
"postcss": "^8.2.8",
"postcss-custom-media": "^8.0.0",
"postcss-discard-duplicates": "^4.0.2",
"postcss-loader": "^5.2.0",
"postcss-media-minmax": "^5.0.0",
"postcss-mixins": "^7.0.3",
"postcss-modules": "^4.0.0",
"precss": "^4.0.0",
"stylelint": "^13.12.0",
"ts-jest": "^26.5.4",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.7.0"
},
"scripts": {
"cleanup:node": "find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \\;",
"build": "lerna run --parallel --stream build",
"watch": "lerna run --parallel --stream watch",
"lint:css": "stylelint 'DistributionPackages/*/Resources/Private/**/*.css'",
"lint:js": "eslint 'DistributionPackages/*/Resources/Private/**/*.ts'",
"postinstall": "lerna bootstrap"
},
"browserslist": [
">1%",
"not dead",
"not IE 11",
"not IE_Mob 11"
],
"eslintConfig": {
"extends": [
"@sitegeist/es-neos-eslint"
],
"parser": "@typescript-eslint/parser"
},
"stylelint": {
"extends": [
"@sitegeist/es-neos-stylelint"
],
"rules": {
"property-no-unknown": [
true,
{
"ignoreProperties": [
"composes"
]
}
]
}
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"<rootDir>/DistributionPackages/*/Resources/Private/Fusion/**/*.spec.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/Packages/"
]
},
"name": "sitegeist-neos-base-distribution"
}