-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "@tattoo/monorepo",
"version": "0.0.1",
"description": "Tattoo - Monorepo",
"author": "Alejandro Ojeda Gutiérrez",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/localnet/tattoo.git"
},
"scripts": {
"lint": "node makefile.js lint",
"fix": "node makefile.js fix",
"style": "node makefile.js style"
},
"dependencies": {
"@tattoo/browser": "file:packages/browser",
"@tattoo/server": "file:packages/server"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.2",
"shelljs": "^0.8.5",
"stylelint": "^15.10.3",
"stylelint-config-css-modules": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"typescript": "^5.1.6"
}
}