-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
115 lines (115 loc) · 3.55 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "brmodeloweb",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node server.js",
"start:dev": "export NODE_ENV=development && nodemon server.js",
"start:frontend": "export NODE_ENV=development && webpack-dev-server --hot --progress --color",
"build": "export NODE_ENV=production && rimraf ./app/dist && webpack --progress --color",
"test": "jest --coverage",
"test:cy": "yarn cypress run",
"test:watch": "jest --watch",
"cy:open": "yarn cypress open"
},
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"dependencies": {
"@babel/runtime": "^7.23.1",
"@uirouter/angularjs": "^1.1.0",
"angular": "^1.8.3",
"angular-cookies": "^1.8.3",
"angular-translate": "^2.18.3",
"angular-ui-bootstrap": "^2.5.6",
"angular-ui-router": "^1.0.30",
"body-parser": "^1.20.2",
"bootstrap": "^3.4.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"errorhandler": "^1.5.1",
"express": "^4.19.2",
"express-session": "^1.17.3",
"express-sslify": "^1.2.0",
"font-awesome": "^4.7.0",
"form-data": "^4.0.0",
"hotkeys-js": "^3.12.0",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"jointjs": "3.7.5",
"jsonwebtoken": "^9.0.2",
"mailgun.js": "^4.2.3",
"mongodb": "~4.17.0",
"mongoose": "^6.11.6",
"morgan": "^1.10.0",
"oclazyload": "^1.1.0",
"prop-types": "^15.8.1",
"raw-body": "^2.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.2",
"react2angular": "^4.0.6",
"response-time": "^2.3.2",
"styled-components": "^6.0.8",
"textangular": "^1.5.16",
"typescript": "^5.2.2"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@babel/core": "^7.23.0",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@faker-js/faker": "^8.2.0",
"@types/react": "^18.2.24",
"@types/styled-components": "^5.1.28",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@webpack-cli/serve": "^2.0.5",
"autoprefixer": "10.4.16",
"babel-loader": "^9.1.3",
"babel-plugin-angularjs-annotate": "^0.10.0",
"css-loader": "^6.8.1",
"cssnano": "6.0.1",
"cypress": "^13.3.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "5.5.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^3.0.1",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"raw-loader": "^4.0.2",
"rimraf": "^5.0.5",
"sass": "^1.68.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"supertest": "^6.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"url-loader": "^4.1.1",
"webpack": "5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"resolutions": {
"styled-components": "^5"
}
}