-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 1.6 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
{
"name": "@netcentric/fe-build",
"version": "4.0.2",
"description": "Frontend build tools for AEM projects.",
"license": "Apache-2.0",
"author": "Cognizant Netcentric (https://www.netcentric.biz)",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Netcentric/fe-build.git "
},
"scripts": {
"clean": "rm -rf ./test/dist",
"test": "npm run clean && jest -u"
},
"keywords": [
"build"
],
"files": [
"/config",
"/utils",
"/tasks",
"/cli",
"/docs",
"/hooks",
"./README.md",
"LICENSE"
],
"bin": {
"nc-fe-build": "./cli/index.js"
},
"paths": {
"configs": "./config",
"tasks": "./tasks"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"autoprefixer": "^10.4.20",
"babel-loader": "9.1.2",
"core-js": "^3.6.5",
"eslint": "^8.57.1",
"eslint-webpack-plugin": "^4.2.0",
"fast-glob": "^3.3.2",
"gaze": "^1.1.3",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"sass": "^1.82.0",
"semver": "^7.6.3",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"webpack": "^5.97.1"
},
"devDependencies": {
"del-cli": "^6.0.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"overrides": {
"semver": "^7.6.3"
},
"browserslist": [
"last 2 versions",
"not ie > 0",
"not ie_mob > 0",
"not dead",
"not OperaMini all"
],
"engines": {
"node": ">=18.0.0"
}
}