-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "fakerepo",
"version": "0.0.1",
"description": "A real time wysiwyg editor with Socket.io and Quill.js",
"main": "index.js",
"author": "Eduardo Almeida",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"server": "npm start -w @fakerepo/server",
"web": "npm start -w @fakerepo/web",
"build": "npm run build -w @fakerepo/web",
"dev:server": "npm run dev -w @fakerepo/server",
"dev:web": "npm run dev -w @fakerepo/web",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint packages/server/src --ext .ts,.tsx",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "fakerepo"
},
"keywords": [],
"devDependencies": {
"@types/babel__core": "^7.20.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.1",
"prettier": "^3.0.1",
"prisma": "^5.1.1"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,css,md,ts,tsx}": "prettier --write"
},
"dependencies": {
"@prisma/client": "^5.1.1",
"socket.io-client": "^4.5.4"
}
}