-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.12 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
{
"name": "saas-theme",
"version": "1.0.0",
"description": "SaaS Academy Theme",
"repository": "[email protected]:modxcms/saas-theme.git",
"author": "matdave <[email protected]>",
"license": "MIT",
"private": true,
"source": "_build/src/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"build": "webpack --progress --mode production",
"dev": "webpack serve --mode development",
"types": "tsc -p tsconfig.json --skipLibCheck --noEmit",
"lint": "eslint --max-warnings 0 _build",
"lint:fix": "eslint --max-warnings 0 --fix _build",
"stylelint": "stylelint _build/**/*.css",
"stylelint:fix": "stylelint _build/**/*.css --fix",
"watch": "webpack --watch --progress --mode development",
"test": "npm run lint && npm run types && npm run stylelint"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3"
},
"devDependencies": {
"@parcel/transformer-postcss": "^2.12.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"@typescript-eslint/typescript-estree": "^8.12.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"cssnano-preset-advanced": "^7.0.6",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"file-loader": "^6.2.0",
"glob": "^11.0.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.1",
"path": "^0.12.7",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-extend-rule": "^4.0.0",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-nested": "^6.2.0",
"postcss-utilities": "^0.8.4",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}