This repository has been 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
123 lines (123 loc) · 3.61 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
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
{
"name": "@trex/ycai",
"version": "2.8.5",
"description": "YouChoose AI",
"homepage": "https://youchoose.ai",
"bugs": "https://github.com/tracking-exposed/trex/issues",
"license": "AGPL-3.0",
"author": "Read the CREDITS file in the repository linked in https://youchoose.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/tracking-exposed/trex.git"
},
"scripts": {
"clean": "rm -rf ./build",
"lint": "eslint ./src",
"format": "prettier -w ./src",
"tsc": "tsc",
"build": "tsc --build && NODE_ENV=production webpack",
"build:dev": "tsc --build && webpack",
"watch": "DEBUG=\"@trex*,@YCAI*\" webpack serve",
"watch:prod": "DOTENV_CONFIG_PATH=.env yarn watch",
"test": "jest",
"stats": "webpack-bundle-analyzer build/stats.json",
"open-doc-api": "ts-node bin/open-doc-api.ts",
"prepack": "yarn build"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/bs58": "^4.0.1",
"@types/chrome": "^0.0.188",
"@types/debug": "^4.1.7",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.68",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.17",
"@types/react-test-renderer": "^17.0.2",
"@types/swagger-ui": "^3.52.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"buffer": "^6.0.3",
"conventional-changelog-conventionalcommits": "^5.0.0",
"css-loader": "^6.7.1",
"dotenv": "^16.0.3",
"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-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-chrome": "^0.7.2",
"prettier": "^2.7.1",
"react-test-renderer": "^17.0.2",
"style-loader": "^3.3.1",
"svgdom": "^0.1.10",
"ts-jest": "^27.1.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@types/c3": "^0.7.8",
"@types/lodash": "^4.14.186",
"@vx/group": "0.0.199",
"@vx/hierarchy": "0.0.199",
"@vx/mock-data": "0.0.199",
"@vx/responsive": "0.0.199",
"@vx/scale": "0.0.199",
"@vx/text": "0.0.199",
"@vx/tooltip": "0.0.199",
"acorn": "^8.7.0",
"avenger": "^7.0.1",
"axios": "^0.24.0",
"bs58": "^4.0.1",
"c3": "^0.7.20",
"date-fns": "^2.28.0",
"debug": "^4.3.4",
"fp-ts": "^2.11.9",
"i18next": "^21.8.13",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"lodash": "^4.17.21",
"monocle-ts": "^2.3.12",
"nacl": "^0.1.3",
"newtype-ts": "^0.3.5",
"postcss": "^8.4.14",
"react": "^17.0.2",
"react-dnd": "^14.0.5",
"react-dnd-html5-backend": "^14.1.0",
"react-dom": "^17.0.2",
"react-i18next": "^11.18.0",
"react-use-clipboard": "^1.0.8",
"swagger-ui": "^4.14.3",
"ts-endpoint": "^2.0.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.13.5",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}