-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
141 lines (141 loc) · 4.4 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "coriolis-web",
"version": "2.0.0",
"license": "AGPL-3.0",
"packageManager": "yarn@3.6.3",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "node ./server",
"build": "webpack --config webpack.prod.js",
"client-dev": "webpack-dev-server --config webpack.dev.js",
"server-dev": "nodemon -e ts,js -w server/**/ -w .env",
"server-debug": "node --inspect server",
"tsc": "npx tsc --skipLibCheck",
"eslint": "npx eslint \"src/**\" \"server/**\"",
"format": "prettier --check src/**/*.{js,jsx,ts,tsx,css,md,json} --config ./.prettierrc",
"test": "jest",
"e2e": "cypress run",
"test-release": "node ./tests/testRelease",
"storybook": "start-storybook"
},
"devDependencies": {
"@storybook/react": "^6.4.13",
"@testing-library/dom": "^8.11.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/connect": "^3.4.33",
"@types/express": "^4.17.6",
"@types/file-saver": "^2.0.1",
"@types/jest": "^27.0.2",
"@types/js-cookie": "^2.2.6",
"@types/luxon": "^3.3.3",
"@types/moment-timezone": "^0.5.13",
"@types/react": "^16.13.1",
"@types/react-collapse": "^5.0.0",
"@types/react-dom": "^16.9.8",
"@types/react-modal": "^3.10.5",
"@types/react-notification-system": "^0.2.39",
"@types/react-router-dom": "^5.1.2",
"@types/react-tooltip": "^4.2.4",
"@types/styled-components": "^5.1.27",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"cross-spawn": "^7.0.3",
"cypress": "13.3.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-coriolis-web": "file:./src/utils/eslint-plugin-coriolis-web",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.7",
"jest": "^27.3.1",
"jest-canvas-mock": "^2.5.2",
"nodemon": "^2.0.4",
"prettier": "^2.7.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/register": "^7.7.0",
"ansi-to-html": "^0.6.14",
"autobind-decorator": "^2.1.0",
"axios": "^0.21.2",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"body-parser": "^1.18.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"file-loader": "^4.2.0",
"file-saver": "^2.0.2",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^3.2.0",
"js-base64": "^3.5.2",
"js-cookie": "^2.2.1",
"jszip": "^3.8.0",
"lodash": "^4.17.19",
"luxon": "^3.4.3",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"moment-timezone": "^0.5.35",
"ms-rest-azure": "^2.4.5",
"path": "^0.12.7",
"react": "^16.13.1",
"react-collapse": "^5.0.1",
"react-datetime": "^3.1.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.17",
"react-modal": "^3.11.2",
"react-motion": "^0.5.2",
"react-notification-system": "^0.4.0",
"react-router-dom": "^5.1.2",
"react-tooltip": "^4.5.1",
"react-transition-group": "1.x",
"request": "^2.88.0",
"require-without-cache": "^0.0.6",
"rimraf": "^2.6.2",
"styled-components": "^4.4.1",
"tai-password-strength": "^1.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.3",
"url-loader": "^4.1.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"async": "^2.6.4",
"base64url": "^3.0.0",
"eventsource": "^2.0.2",
"glob-parent": "^5.1.2",
"hosted-git-info": "^2.8.9",
"is-svg": "^4.2.2",
"json-schema": "^0.4.0",
"loader-utils": "^2.0.3",
"minimist": "^1.2.6",
"node-fetch": "^2.6.1",
"node-forge": "^1.0.0",
"node-notifier": "^8.0.1",
"normalize-url": "^4.5.1",
"nth-check": "^2.0.1",
"prismjs": "^1.27.0",
"postcss": "^8.2.13",
"lodash": "^4.17.21",
"tar": "^4.4.18",
"trim": "^0.0.3",
"ua-parser-js": "^0.7.24",
"underscore": "^1.12.1",
"y18n": "^3.2.2",
"yargs-parser": "^20.2.9"
}
}