-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.87 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
{
"name": "cryptobot-app-monorepo",
"private": true,
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"prettier": "./packages/tools/prettier.config.js",
"packageManager": "pnpm",
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "turbo run format --parallel",
"compile": "turbo run compile --parallel",
"build": "turbo run build --include-dependencies",
"dev:local": "turbo run dev --no-deps --include-dependencies",
"dev:prod": "turbo run dev --filter=\"!./apps/api\"",
"dev:api": "pnpm --filter @cryptobot/api run dev",
"clean": "turbo run clean && rm -rf pnpm-lock.yaml && rm -rf node_modules"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"tailwind-merge": "^1.12.0",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"tsc-multi": "^1.0.0",
"tsc-watch": "^6.0.1",
"turbo": "^1.9.3",
"typescript": "^4.9.5",
"unbuild": "^1.2.1",
"vite": "^4.3.1",
"vite-plugin-dts": "^2.3.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.30.1"
},
"engines": {
"node": ">=18"
},
"volta": {
"node": "18.14.1"
},
"dependencies": {
"dotenv-mono": "^1.3.10"
},
"eslintConfig": {
"extends": "./_config/.eslintrc.json"
}
}