-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.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
{
"name": "kollector",
"version": "0.1.0",
"description": "Simple front-end for grpc order books",
"main": "web/index.ts",
"repository": "git@github.com:quantmind/kollector.git",
"author": "luca@quantmind.com",
"license": "MIT",
"scripts": {
"lint": "eslint 'app/**/*'",
"fix": "eslint 'app/**/*' --fix",
"precommit": "lint-staged",
"build": "export NODE_ENV=production && webpack",
"watch": "export NODE_ENV=development && webpack serve --progress",
"dev": "export NODE_ENV=production && webpack serve",
"postinstall": "husky install"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn fix"
],
"*.{json,css,scss}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"devDependencies": {
"@types/d3": "^7.1.0",
"@types/lodash.debounce": "^4.0.7",
"@types/react-dom": "^18.0.4",
"@types/react-router-dom": "^5.3.3",
"dotenv": "^16.0.1",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-require-from": "^1.8.6"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.8.0",
"@observablehq/plot": "^0.4.3",
"google-protobuf": "^3.20.1",
"grpc-web": "^1.3.1",
"lodash.debounce": "^4.0.8",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0"
}
}