forked from symfony/webpack-encore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·111 lines (111 loc) · 3.49 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
{
"name": "@symfony/webpack-encore",
"version": "1.8.1",
"description": "Webpack Encore is a simpler way to integrate Webpack into your application",
"main": "index.js",
"scripts": {
"test": "yarn run test:main && yarn run test:persistent-cache",
"test:main": "mocha --reporter spec test --recursive --ignore test/persistent-cache/*",
"test:persistent-cache": "node run-persistent-tests",
"lint": "eslint lib test index.js .eslintrc.js",
"travis:lint": "yarn run lint"
},
"bin": {
"encore": "bin/encore.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/symfony/webpack-encore.git"
},
"author": "Ryan Weaver <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/symfony/webpack-encore/issues"
},
"engines": {
"node": "^10.19.0 || ^12.0.0 || >=14.0.0"
},
"homepage": "https://github.com/symfony/webpack-encore",
"dependencies": {
"@babel/core": "^7.7.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.10.0",
"@nuxt/friendly-errors-webpack-plugin": "^2.5.1",
"assets-webpack-plugin": "7.0.*",
"babel-loader": "^8.2.2",
"chalk": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^2.0.0",
"fast-levenshtein": "^3.0.0",
"loader-utils": "^2.0.0",
"mini-css-extract-plugin": "^1.5.0",
"pkg-up": "^3.1.0",
"pretty-error": "^3.0.3",
"resolve-url-loader": "^3.1.2",
"semver": "^7.3.2",
"style-loader": "^2.0.0",
"sync-rpc": "^1.3.6",
"terser-webpack-plugin": "^5.1.1",
"tmp": "^0.2.1",
"webpack": "^5.35",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.0.0",
"yargs-parser": "^20.2.4"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@hotwired/stimulus": "^3.0.0",
"@symfony/mock-module": "file:fixtures/stimulus/mock-module",
"@symfony/stimulus-bridge": "^2.0.0 || ^3.0.0",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-preset-jsx": "^1.0.0",
"@vue/compiler-sfc": "^3.0.2",
"autoprefixer": "^10.2.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-fs": "^2.0.0",
"chai-subset": "^1.6.0",
"core-js": "^3.0.0",
"eslint": "^7.0.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^5.0.0 || ^6.0.0",
"fs-extra": "^9.0.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.0",
"http-server": "^0.12.3",
"less": "^4.0.0",
"less-loader": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"mocha": "^8.2.1",
"postcss": "^8.1.0",
"postcss-loader": "^4.0.0 || ^5.0.0 || ^6.0.0",
"preact": "^8.2.1 || ^10.0.0",
"preact-compat": "^3.17.0",
"sass": "^1.17.0",
"sass-loader": "^9.0.1 || ^10.0.0 || ^11.0.0 || ^12.0.0",
"sinon": "^9.0.2",
"strip-ansi": "^6.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2 || ^4.0.0 || ^5.0.0",
"ts-loader": "^9.0.0",
"typescript": "^4.2.2",
"vue": "^3.2.14",
"vue-loader": "^16.7.0",
"vue-template-compiler": "^2.5",
"webpack-notifier": "^1.6.0",
"zombie": "^6.1.4"
},
"files": [
"lib/",
"bin/",
"index.js"
]
}