-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 3.62 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
124
125
{
"name": "youchoose.ai",
"version": "1.0.0",
"description": "YouChoose AI",
"homepage": "https://youchoose.ai",
"bugs": "https://github.com/tracking-exposed/yttrex/issues",
"private": true,
"license": "AGPL-3.0",
"author": "Read the CREDITS file in the repository linked in https://youchoose.ai",
"scripts": {
"prepare": "husky install",
"clean": "rm -rf ./build",
"lint": "eslint ./src",
"format": "prettier -w ./src config-overrides.js",
"tsc": "tsc",
"build": "tsc && NODE_ENV=production webpack",
"build:dev": "webpack",
"watch": "webpack -w",
"watch:prod": "DOTENV_CONFIG_PATH=.env.production webpack -w",
"test": "jest",
"stats": "webpack-bundle-analyzer build/stats.json",
"prepack": "npm run build",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/bs58": "^4.0.1",
"@types/chrome": "0.0.157",
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.3",
"@types/react": "^16.14.20",
"@types/react-dom": "^16.9.14",
"@types/react-test-renderer": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^10.0.0",
"css-loader": "^6.5.1",
"dotenv": "^10.0.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.26.1",
"filemanager-webpack-plugin": "^6.1.7",
"husky": "^7.0.4",
"jest-chrome": "^0.7.2",
"mini-css-extract-plugin": "^1.6.2",
"prettier": "^2.4.0",
"react-test-renderer": "^16.0.0",
"semantic-release": "^18.0.0",
"style-loader": "^3.3.1",
"svgdom": "^0.1.10",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "4.4.4",
"webpack": "^5.64.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"zenroom": "^2.2.1"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@types/c3": "^0.7.6",
"@types/lodash": "^4.14.177",
"acorn": "^8.6.0",
"avenger": "^7.0.1",
"axios": "^0.22.0",
"bs58": "^4.0.1",
"c3": "^0.7.20",
"date-fns": "^2.25.0",
"debug": "^4.3.2",
"fp-ts": "^2.11.5",
"i18next": "^21.4.0",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"jest": "^27.3.1",
"lodash": "^4.17.21",
"marked": "^2.1.3",
"moment": "^2.29.1",
"monocle-ts": "^2.3.11",
"nacl": "^0.1.3",
"newtype-ts": "^0.3.4",
"postcss": "^8.3.11",
"react": "^16.14.0",
"react-dnd": "^14.0.4",
"react-dnd-html5-backend": "^14.0.2",
"react-dom": "^16.14.0",
"react-i18next": "^11.13.0",
"ts-endpoint": "^2.0.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.13.3",
"uuid": "^2.0.3",
"web-vitals": "^2.1.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}