This repository was archived by the owner on Aug 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
64 lines (64 loc) · 1.97 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
{
"name": "@trex/taboule",
"description": "Table component to display TrEx data",
"version": "2.8.5",
"scripts": {
"clean": "rm -rf ./build",
"type-check": "tsc -b",
"build": "tsc -b && webpack",
"dist": "tsc -b && NODE_ENV=production webpack",
"watch": "webpack serve",
"lint": "eslint ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"bundle:stats": "webpack-bundle-analyzer ./build/stats.json"
},
"license": "AGPL-3.0",
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/styles": "^4.11.5",
"@material-ui/x-license": "^4.0.0-alpha.37",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.0",
"@mui/styled-engine": "^5.8.0",
"@mui/x-data-grid": "^5.11.1",
"avenger": "^7.0.1",
"axios": "^0.24.0",
"date-fns": "^2.28.0",
"debug": "^4.3.4",
"fp-ts": "^2.11.9",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-endpoint": "^2.0.0",
"ts-io-error": "^2.0.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/node": "^16.11.68",
"@types/prettier": "^2.6.3",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.17",
"@types/webpack-bundle-analyzer": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"ts-loader": "^9.4.2",
"typelevel-ts": "^0.4.0",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}