-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
{
"name": "@embroider/webpack",
"version": "0.43.1",
"private": false,
"description": "Builds EmberJS apps with Webpack",
"repository": {
"type": "git",
"url": "https://github.com/embroider-build/embroider.git",
"directory": "packages/webpack"
},
"license": "MIT",
"author": "Edward Faulkner",
"main": "src/ember-webpack.js",
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"src/**/*.js.map"
],
"scripts": {
"prepare": "tsc"
},
"dependencies": {
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@embroider/babel-loader-8": "0.43.1",
"@embroider/hbs-loader": "0.43.1",
"@embroider/shared-internals": "0.43.1",
"@types/loader-utils": "^2.0.2",
"@types/source-map": "^0.5.7",
"@types/supports-color": "^8.1.0",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"supports-color": "^8.1.0",
"css-loader": "^5.2.6",
"csso": "^4.2.0",
"debug": "^4.3.2",
"fs-extra": "^9.1.0",
"jsdom": "^16.6.0",
"loader-utils": "^2.0.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^1.6.0",
"semver": "^7.3.5",
"source-map-url": "^0.4.1",
"style-loader": "^2.0.0",
"terser": "^5.7.0",
"thread-loader": "^3.0.4"
},
"devDependencies": {
"@types/csso": "^3.5.1",
"@types/fs-extra": "^9.0.11",
"@types/lodash": "^4.14.170",
"@types/mini-css-extract-plugin": "^1.4.3",
"@types/node": "^15.12.2",
"typescript": "~4.0.0",
"webpack": "^5.38.1"
},
"peerDependencies": {
"@embroider/core": "0.43.1",
"webpack": "^5.0.0"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"volta": {
"extends": "../../package.json"
}
}