-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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
{
"name": "react-ui-roundup",
"version": "1.0.0",
"author": "Dimitri Mitropoulos <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"source": "website/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "yarn clean",
"build": "yarn parcel build --no-cache",
"lint": "yarn eslint --ext js,ts,tsx .",
"generate": "yarn ts-node markdown/generate-readme.ts",
"generate:dev": "SHOULD_FETCH=false yarn ts-node markdown/generate-readme.ts",
"start": "yarn parcel serve website/index.html --no-cache",
"start:dev": "SHOULD_FETCH=false yarn start",
"test": "yarn jest --watch"
},
"dependencies": {
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"@mui/icons-material": "5.0.5",
"@mui/lab": "5.0.0-alpha.53",
"@mui/material": "5.0.6",
"cross-fetch": "3.1.4",
"node-fetch": "2.6.1",
"ramda": "0.27.1",
"ramda-adjunct": "2.33.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"the-new-css-reset": "^1.3.1"
},
"devDependencies": {
"@babel/preset-typescript": "7.14.5",
"@octokit/types": "6.21.0",
"@parcel/transformer-typescript-tsc": "2.0.0",
"@types/mocha": "9.0.0",
"@types/node": "16.4.0",
"@types/node-fetch": "2.5.11",
"@types/ramda": "0.27.44",
"@types/react": "17.0.9",
"@types/react-dom": "17.0.9",
"@types/webpack-env": "1.16.2",
"@typescript-eslint/eslint-plugin": "~4.28.1",
"@typescript-eslint/parser": "~4.28.1",
"eslint": "~7.29.0",
"eslint-config-intense": "0.7.7",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.23.4",
"eslint-plugin-jest": "~24.3.6",
"eslint-plugin-jest-formatting": "~3.0.0",
"eslint-plugin-no-secrets": "~0.8.9",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-ramda": "~2.5.1",
"eslint-plugin-react": "~7.24.0",
"eslint-plugin-react-hooks": "~4.2.0",
"eslint-plugin-simple-import-sort": "~7.0.0",
"jest": "27.0.6",
"jest-extended": "0.11.5",
"parcel": "2.0.0",
"ts-jest": "27.0.4",
"ts-node": "10.1.0",
"type-fest": "^1.2.2",
"typescript": "4.3.5"
}
}