-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "my-awesome-learning-project",
"version": "0.1.0",
"description": "Project description",
"main": "index.js",
"directories": {
"test": "ui/tests"
},
"scripts": {
"build": "webpack",
"watch": "webpack watch",
"lint": "eslint ui/src --ext .js",
"lint:fix": "npm run lint -- --fix",
"test": "NODE_ENV=test jest --no-cache"
},
"author": "Globex Corporation",
"license": "Apache Software License 2.0",
"dependencies": {
"@cloudblueconnect/connect-ui-toolkit": "^26",
"@fontsource/roboto": "^4.5.8",
"css-minimizer-webpack-plugin": "^4.2.2"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"css-loader": "^6.7.1",
"eslint": "8.17.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-import": "2.26.0",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "28.1.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^2.6.1",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"copy-webpack-plugin": "^11.0.0"
}
}