-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
{
"name": "aws-lex-web-ui",
"version": "0.19.5",
"description": "Sample Amazon Lex Web Interface",
"main": "dist/lex-web-ui.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/awslabs/aws-lex-web-ui.git"
},
"keywords": [
"aws",
"lex",
"bot",
"chatbot",
"web",
"interface",
"ui"
],
"author": "AWS",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/awslabs/aws-lex-web-ui/issues"
},
"homepage": "https://github.com/awslabs/aws-lex-web-ui#readme",
"scripts": {
"build-prod": "webpack --mode production --env production",
"build-dev": "webpack --mode development --hide-modules",
"build": "npm run build-dev && npm run build-prod",
"dev": "webpack-dev-server --mode development --hot",
"lint": "eslint --format node_modules/eslint-formatter-friendly src/lex-web-ui-loader"
},
"dependencies": {
"amazon-cognito-auth-js": "^1.2.4",
"core-js": "^3.6.5",
"jsonwebtoken": "^9.0.0",
"regenerator-runtime": "^0.13.5"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^3.5.2",
"cssnano": "^5.1.14",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.20.2",
"express": "^4.17.1",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"webpack": "^5.75.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^4.11.1"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 7.10.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 11"
]
}