forked from mschlitz-trux/angularjs-webpack-babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.32 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "angularjs-webpack-babel",
"version": "1.3.1",
"description": "XLTS for AngularJS ES6 boilerplate with Webpack 5",
"repository": {
"type": "git",
"url": "https://github.com/xlts-dev/angularjs-webpack-babel"
},
"keywords": [
"angularjs",
"webpack"
],
"license": "GPL-3.0-only",
"author": {
"name": "XLTS.dev",
"email": "[email protected]",
"url": "https://xlts.dev/angularjs"
},
"contributors": [
{
"name": "Leonard Bogodnoff",
"email": "[email protected]",
"url": "https://github.com/rememberlenny"
},
{
"name": "Mark Schlitz",
"email": "[email protected]",
"url": "https://github.com/mschlitz-trux"
},
{
"name": "Ed Clement",
"email": "[email protected]",
"url": "https://github.com/edclement"
},
{
"name": "Michael Prentice",
"email": "[email protected]",
"url": "https://github.com/splaktar"
},
{
"name": "Jaroslaw Zolnowski",
"email": "[email protected]",
"url": "https://github.com/jzolnowski"
}
],
"scripts": {
"pre-commit": "lint-staged",
"build:templates": "gulp templates",
"start:server": "webpack-dev-server --open --mode development --config config/webpack.dev.mjs",
"watch:templates": "gulp watch",
"start": "npm run build:templates && run-p start:server watch:templates",
"lint": "eslint .",
"test:unit": "karma start karma.config.js",
"test:unit:watch": "npm run build:templates && run-p test:unit watch:templates",
"test:unit:single": "run-s build:templates \"test:unit -- --single-run\"",
"build": "npm run build:templates && webpack --mode production --config config/webpack.prod.mjs",
"start:prod-local": "http-server dist -p 4200 -c-1 -b",
"prettier": "prettier --write \"**/*.{js,json,css,scss,less,md,ts,html}\"",
"test:e2e": "playwright test",
"test:e2e:debug": "playwright test --project chromium --headed",
"test:e2e:report": "npx playwright show-report",
"test": "run-s lint test:unit:single test:e2e",
"update": "ncu -u && npm install",
"prepare": "husky install && npx playwright install"
},
"browserslist": [
"last 2 versions"
],
"engines": {
"node": ">=18",
"npm": ">=9"
},
"dependencies": {
"angular": "npm:@xlts.dev/[email protected]",
"angular-animate": "npm:@xlts.dev/[email protected]",
"angular-aria": "npm:@xlts.dev/[email protected]",
"angular-material": "npm:@xlts.dev/angular-material@^1.2.4",
"angular-messages": "npm:@xlts.dev/angular-messages@^1.9.3",
"angular-sanitize": "npm:@xlts.dev/angular-sanitize@^1.9.3",
"core-js": "^3.27.2"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-object-assign": "7.18.6",
"@babel/preset-env": "7.20.2",
"@babel/register": "^7.21.0",
"@playwright/test": "^1.30.0",
"angular-mocks": "npm:@xlts.dev/angular-mocks@^1.9.3",
"autoprefixer": "10.4.13",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-plugin-angularjs-annotate": "^0.10.0",
"clean-webpack-plugin": "4.0.0",
"css-loader": "6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-angular": "^4.1.0",
"eslint-plugin-import-order": "^2.1.4",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "~4.0.2",
"gulp-angular-templatecache": "~3.0.1",
"gulp-htmlmin": "~5.0.1",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"imagemin": "^8.0.1",
"jasmine-core": "4.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"karma-webpack": "5.0.0",
"lint-staged": "13.1.0",
"mini-css-extract-plugin": "^2.7.2",
"ng-hot-reload-loader": "^3.3.2",
"npm-check-updates": "^16.10.12",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-loader": "7.0.2",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"sass-loader": "12.4.0",
"webpack": "5.76.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,json,css,scss,less,md,ts,html}": "prettier --write"
}
}