-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.82 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
{
"name": "edict",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"core:test:watch": "nx test core --watch",
"example:phaser": "nx serve examples-phaser-game",
"example:cities": "nx serve examples-react-perf",
"example:todo": "nx serve examples-react-todo",
"example:password": "nx serve examples-react-password",
"example:realworld": "nx serve examples-react-realworld",
"profile:packed5": "npx speedscope profiles/packages/rete/packed5.cpuprofile",
"build": "nx run-many --all --target=build",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' nx run-many --all --target=test",
"nx": "nx"
},
"private": true,
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@hqoss/monads": "^0.5.0",
"@mui/material": "^5.10.10",
"core-js": "^3.6.5",
"date-fns": "^2.29.3",
"decoders": "^1.25.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"phaser": "^3.55.2",
"ramda": "^0.28.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.39.1",
"react-is": "18.2.0",
"react-router-dom": "6.3.0",
"regenerator-runtime": "0.13.7",
"styled-components": "5.3.5",
"tslib": "^2.3.0"
},
"devDependencies": {
"@babel/preset-react": "^7.16.7",
"@faker-js/faker": "^7.6.0",
"@nrwl/cli": "14.1.5",
"@nrwl/cypress": "14.1.5",
"@nrwl/eslint-plugin-nx": "14.1.5",
"@nrwl/jest": "14.1.5",
"@nrwl/js": "14.1.5",
"@nrwl/linter": "14.1.5",
"@nrwl/nx-cloud": "14.0.3",
"@nrwl/react": "14.1.5",
"@nrwl/web": "14.1.5",
"@nrwl/workspace": "14.1.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "13.1.1",
"@types/jest": "27.4.1",
"@types/lodash": "^4.14.184",
"@types/node": "^18.11.18",
"@types/object-hash": "^2.2.1",
"@types/ramda": "^0.28.18",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/react-is": "17.0.3",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.25",
"@typescript-eslint/eslint-plugin": "~5.18.0",
"@typescript-eslint/parser": "~5.18.0",
"babel-jest": "27.5.1",
"babel-plugin-styled-components": "1.10.7",
"cypress": "^9.1.0",
"eslint": "~8.12.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.4.0",
"nx": "14.1.5",
"open": "^8.4.0",
"prettier": "^2.5.1",
"react-test-renderer": "18.1.0",
"ts-jest": "27.1.4",
"ts-node": "9.1.1",
"typescript": "~4.6.2",
"v8-profiler-next": "^1.9.0"
},
"workspaces": [
"packages/**"
]
}