-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 890 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 890 Bytes
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
{
"author": "Fewlines",
"license": "MIT",
"main": "index.js",
"name": "@fewlines/javascript-styleguide",
"repository": "git@github.com:fewlinesco/javascript-styleguide.git",
"version": "1.0.0",
"eslintConfig": {
"extends": "./node",
"env": {
"jest": true
}
},
"dependencies": {
"@remix-run/eslint-config": "1.19.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.46.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-tailwindcss": "3.8.0",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "0.4.1",
"typescript": "5.1.6"
},
"scripts": {
"experimental-publish": "yarn publish --new-version \"0.0.0-experimental-$(git rev-parse --short HEAD)\" --access public --tag experimental",
"lint": "eslint --ext .js ."
}
}