generated from ChatSift/bot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "@chatsift/website",
"description": "ChatSift website",
"packageManager": "[email protected]",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/chatsift/website.git"
},
"bugs": {
"url": "https://github.com/chatsift/website/issues"
},
"homepage": "https://github.com/chatsift/website",
"imports": {},
"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-api": "dotenv -e .env -- node --es-module-specifier-resolution=node --enable-source-maps ./packages/api/dist/index.js",
"prepare": "is-ci || husky install",
"update": "yarn upgrade-interactive"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-angular": "^17.0.3",
"@types/node": "^16.11.47",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"dotenv-cli": "^6.0.0",
"eslint": "^8.20.0",
"eslint-config-neon": "^0.1.33",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prisma": "^4.1.1",
"turbo": "^1.4.2",
"typescript": "^4.7.4"
}
}