-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.39 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
{
"name": "blueprint-sample-todo",
"engines": {
"node": ">= 16.0.0",
"npm": ">= 8.0.0"
},
"scripts": {
"common-eslint": "eslint . --ext .js,.jsx,.cjs,.mjs --cache --cache-location node_modules/.cache/.eslintcache --ignore-path .gitignore",
"common-prettier": "prettier \"**/*.{htm,html,json,md,markdown,yml,yaml}\" --cache --ignore-path .gitignore",
"common-sequential": "concurrently --raw --max-processes 1",
"fix": "npm run common-sequential -- npm:fix-*",
"fix-eslint": "npm run common-eslint -- --fix",
"fix-prettier": "npm run common-prettier -- --write",
"lint": "npm run common-sequential -- npm:lint-*",
"lint-eslint": "npm run common-eslint",
"lint-prettier": "npm run common-prettier -- --check"
},
"author": "Noop Inc <hello@noop.dev>",
"devDependencies": {
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.0.3"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"standard",
"standard-jsx"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
}
}