-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 KB
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
{
"name": "@chatsift/social",
"description": "Leveling & more",
"packageManager": "yarn@3.3.1",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/chatsift/social.git"
},
"bugs": {
"url": "https://github.com/chatsift/social/issues"
},
"homepage": "https://github.com/chatsift/social",
"scripts": {
"lint": "turbo run lint && prettier --check --plugin-search-dir=. .",
"build": "turbo run build",
"format": "prettier --write --plugin-search-dir=. .",
"prisma": "dotenv -e .env prisma",
"start-bot": "dotenv -e .env -- node --enable-source-maps ./packages/bot/dist/index.js",
"start-api": "dotenv -e .env -- node --enable-source-maps ./packages/api/dist/index.js",
"prepare": "is-ci || husky install",
"update": "yarn upgrade-interactive"
},
"engines": {
"node": ">=16.9.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-angular": "^17.6.1",
"@types/node": "^16.18.24",
"eslint": "^8.38.0",
"eslint-config-neon": "^0.1.42",
"eslint-formatter-pretty": "^5.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"prettier": "^2.8.7",
"turbo": "~1.6.3",
"typescript": "^5.6.3"
},
"dependencies": {
"dotenv-cli": "^7.2.1",
"prisma": "^4.13.0"
}
}