-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "app",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"dev:okx": "cd packages/okx && npm run dev",
"dev:binance": "cd packages/binance && npm run dev",
"dev": "run-p dev:*",
"build": "npm run build --workspaces"
},
"dependencies": {},
"devDependencies": {
"@types/chrome": "^0.0.206",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"autoprefixer": "^10.4.13",
"css-loader": "^6.7.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eventemitter2": "^6.4.9",
"html-webpack-plugin": "^5.5.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"postcss-loader": "^7.0.2",
"prettier": "^2.8.1",
"reflect-metadata": "^0.1.13",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.4",
"ts-loader": "^9.4.2",
"tsyringe": "^4.7.0",
"typescript": "^4.9.4",
"vue": "^3.2.45",
"vue-loader": "^17.0.1",
"vue-style-loader": "^4.1.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"workspaces": [
"packages/okx",
"packages/binance",
"packages/shared"
]
}