-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 KB
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
{
"author": "Devo",
"name": "@devoinc/react-app-template",
"version": "1.0.2",
"type": "module",
"scripts": {
"dev": "webpack --config webpack/webpack.dev.js --mode development --env mode='development'",
"pro": "webpack --config webpack/webpack.pro.js --mode production --env mode='production'",
"standalone": "webpack --config webpack/webpack.config.js --mode development --env mode='standalone'",
"lint": "eslint .",
"format": "prettier -w ./src",
"test": "jest"
},
"dependencies": {
"@devoinc/app-developer-kit": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@devoinc/genesys-brand-devo": "^6.5.0",
"@devoinc/genesys-ui": "^11.0.3",
"@devoinc/genesys-ui-code": "^11.0.3",
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"babel-loader": "^9.1.3",
"colorette": "^2.0.20",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-webpack-plugin": "^4.2.0",
"fs-extra": "^11.2.0",
"globals": "^15.8.0",
"html-webpack-plugin": "^5.6.0",
"inline-chunk-html-plugin": "^1.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mustache": "^4.2.0",
"prettier": "^3.3.2",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"url-loader": "^4.1.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-notifier": "^1.15.0"
},
"engines": {
"node": ">=22"
}
}