-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "monorepo",
"version": "1.0.0",
"repository": {
"url": "git+https://github.com/emogit/emojit.git",
"type": "git"
},
"author": "Justin D. Harris <juharris@users.noreply.github.com>",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"test": "true"
},
"workspaces": [
"core",
"extension",
"react-core",
"site"
],
"packageManager": "yarn@3.1.1",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "npm:*",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/chai": "^4.2.22",
"@types/jest": "^27.4.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.6",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"eslint": "^8.11.0",
"mocha": "^9.1.3",
"react-scripts": "^5.0.0",
"rimraf": "^3.0.2",
"ts-mocha": "^8.0.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.1",
"immutability-helper": "^3.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"web-vitals": "^2.1.2"
}
}