-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
88 lines (88 loc) · 2.62 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
{
"name": "@twilio/flex-plugin-webpack",
"version": "7.0.2",
"description": "Flex Plugin Webpack and Webpack dev-server configurations",
"keywords": [
"flex",
"plugins",
"scripts",
"twilio",
"webpack"
],
"homepage": "https://github.com/twilio/flex-plugin-builder",
"bugs": {
"url": "https://github.com/twilio/flex-plugin-builder/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twilio/flex-plugin-builder.git"
},
"license": "MIT",
"author": "Flex Runtime <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"build": "cd ../.. && tsc -p \"packages/flex-plugin-webpack/tsconfig.json\"",
"clean": "rm -rf dist",
"lint": "eslint --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"test": "cd ../.. && jest packages/flex-plugin-webpack --color",
"test:watch": "cd ../.. && jest packages/flex-plugin-webpack --watch --color"
},
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@k88/cra-webpack-hot-dev-client": "^1.1.0",
"@k88/format-webpack-messages": "^1.1.0",
"@k88/interpolate-html-plugin": "^1.0.5",
"@k88/module-scope-plugin": "^1.1.0",
"@k88/typescript-compile-error-formatter": "^1.0.3",
"@twilio/flex-dev-utils": "7.0.2",
"babel-loader": "^8.3.0",
"babel-plugin-named-asset-import": "^0.3.7",
"babel-preset-react-app": "10.0.1",
"cookie-parser": "1.4.6",
"css-loader": "^5.1.3",
"dotenv": "^10.0.0",
"dotenv-webpack": "^6.0.4",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"html-webpack-plugin": "^4.5.0",
"node-ipc": "9.1.4",
"pnp-webpack-plugin": "^1.7.0",
"postcss": "^8.4.31",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^4.2.0",
"postcss-preset-env": "^9.1.4",
"resolve-url-loader": "^5.0.0",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"tapable": "^1.1.3",
"terser-webpack-plugin": "^4.2.3",
"ts-pnp": "^1.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-dev-server": "^4.15.2"
},
"devDependencies": {
"@types/cookie-parser": "1.4.7",
"@types/dotenv-webpack": "^6.0.0",
"@types/node-ipc": "9.1.3",
"@types/tapable": "^1.0.8",
"@types/terser-webpack-plugin": "^2.2.1",
"@types/webpack": "^4.41.26",
"express-serve-static-core": "^0.1.1",
"typescript": "^4.2.3"
},
"engines": {
"node": "^16 || ^18 || ^20"
},
"publishConfig": {
"access": "public"
}
}