-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.99 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.99 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
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
{
"name": "react-orcus",
"version": "0.2.1",
"description": "React library for creating an app with a windowed desktop interface.",
"dependencies": {
"@iconify/iconify": "^3.0.1",
"@reduxjs/toolkit": "^1.9.1",
"@swc/helpers": "~0.4.11",
"core-js": "^3.6.5",
"minimist": "^1.2.7",
"prop-types": "15.6.0",
"react-redux": "^8.0.5",
"react-rnd": "^10.4.1",
"redux": "^4.2.0",
"redux-orm": "^0.16.2",
"regenerator-runtime": "0.13.7",
"reselect": "^4.1.7",
"styled-components": "^5.3.6",
"tslib": "^2.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/preset-react": "^7.14.5",
"@babel/standalone": "^7.20.12",
"@nrwl/cypress": "15.4.4",
"@nrwl/devkit": "15.4.4",
"@nrwl/eslint-plugin-nx": "15.4.4",
"@nrwl/jest": "15.4.4",
"@nrwl/js": "15.4.4",
"@nrwl/linter": "15.4.4",
"@nrwl/nx-plugin": "^15.4.4",
"@nrwl/react": "15.4.4",
"@nrwl/web": "15.4.4",
"@nrwl/workspace": "15.4.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@rollup/plugin-url": "^7.0.0",
"@svgr/rollup": "^6.1.2",
"@svgr/webpack": "^6.1.2",
"@swc-node/register": "^1.4.2",
"@swc/cli": "~0.1.55",
"@swc/core": "^1.2.173",
"@testing-library/react": "13.4.0",
"@types/jest": "28.1.1",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/redux-orm": "^0.16.1",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-jest": "28.1.1",
"chai": "^4.3.7",
"check-prop-types": "^1.1.2",
"copy-webpack-plugin": "^11.0.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jquery": "^3.6.3",
"jsdom": "^20.0.3",
"jsonc-eslint-parser": "^2.1.0",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"nx": "15.4.4",
"prettier": "^2.6.2",
"q": "^1.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dom-instance": "^2.0.0",
"react-refresh": "^0.10.0",
"react-test-renderer": "18.2.0",
"requirejs": "^2.3.6",
"sinon": "^15.0.1",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.2",
"url-loader": "^4.1.1",
"webpack-visualizer-plugin2": "^1.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"main": "build/index.js",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx lint",
"babel": "babel",
"karma": "karma",
"mocha": "mocha",
"old-gulp": "gulp",
"old-lint": "gulp lint",
"old-build": "gulp build",
"old-bundle": "gulp bundle",
"old-minify": "gulp minify",
"old-release": "gulp release",
"old-test": "gulp lint && (npm run test-mocha || true) && npm run test-karma",
"old-test-inspect": "(npm run test-mocha-inspect || true) && npm run test-karma-inspect",
"old-test-mocha": "mocha --require test/util/setup.util.js test/suites/*.test.js",
"old-test-mocha-inspect": "mocha --inspect --inspect-brk --require test/util/setup.util.js test/suites/*.test.js",
"old-test-karma": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"old-test-karma-inspect": "karma start --single-run=false --browsers ChromeHeadless karma.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vallerance/react-orcus"
},
"author": "Joshua Carter",
"license": "MIT"
}