-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.38 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.38 KB
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
{
"name": "@agilepixel/pixelate",
"version": "0.24.0",
"description": "Modified version of the build scripts from the Sage Wordpress theme to make is portable for most use cases",
"main": "index.js",
"scripts": {
"build": "tsc build/webpack.config.ts --outfile build/webpack.config.js",
"lint": "eslint build --quiet",
"test": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --mode=development --config=build/webpack.config.js",
"test:production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --mode=production --config=build/webpack.config.js",
"test:start": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js serve --hot --mode=development --config=build/webpack.config.js"
},
"engines": {
"node": ">= 18"
},
"files": [
"build/*",
"build/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/agilepixel/pixelate"
},
"author": "Richard Brown <richard@agilepixel.io> (http://agilepixel.io)",
"license": "MIT",
"browserslist": [
"maintained node versions"
],
"dependencies": {
"@babel/core": "^7.16.10",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-dynamic-import": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@vue/compiler-sfc": "^3.2.29",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cosmiconfig": "^8.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"cssnano": "^6.0.0",
"esbuild-loader": "^4.0.0",
"eslint-config-agilepixel": "^0.22.0",
"eslint-plugin-compat": "^4.0.1",
"eslint-plugin-vue": "^9.0.0",
"eslint-webpack-plugin": "^4.0.0",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.2",
"normalize.css": "^8.0.1",
"open": "^8.4.0",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^9.0.0",
"postcss-scss": "^4.0.3",
"prettier": "^3.0.0",
"pug": "^3.0.2",
"pug-loader": "github:vdh/pug-loader#patch-1",
"pug-plain-loader": "^1.1.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.49.0",
"sass-loader": "^13.0.0",
"stylelint": "^15.0.0",
"stylelint-formatter-pretty": "^3.0.0",
"stylelint-webpack-plugin": "^4.0.0",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.2.6",
"twig": "^1.15.4",
"twig-loader": "^0.5.5",
"typescript": "^5.0.0",
"vue-eslint-parser": "^9.0.0",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.66.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-server": "^4.7.3",
"webpack-manifest-plugin": "~5.0.0",
"webpack-merge": "^5.8.0",
"yargs": "^17.3.1",
"eslint": "^8.28.0"
},
"devDependencies": {
"@agilepixel/poise": "^4.0.0",
"@types/node": "^20.0.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint-plugin-import": "^2.25.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"ts-node": "^10.9.1",
"vue": "^3.2.13",
"webpack-cli": "^5.0.0"
}
}