forked from wesbos/JavaScript30
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 KB
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
{
"name": "javascript30",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"browserslist": [
"defaults and supports es6-module",
"maintained node versions"
],
"scripts": {
"start": "http-server -S -C localhost.pem -K localhost-key.pem",
"lint:js": "npx eslint \"**/*.{html,js,ts,jsx,tsx}\"",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:style": "npx stylelint \"**/*.{html,css,less,postcss,scss,astro}\"",
"lint:style:fix": "npm run lint:style -- --fix",
"lint": "npm run lint:js && npm run lint:style",
"lint:fix": "npm run lint -- --fix"
},
"author": "issam-seghir",
"license": "MIT",
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.20.0",
"eslint-plugin-unicorn": "^48.0.1",
"http-server": "^14.1.1",
"postcss-html": "^1.5.0",
"stylelint": "^15.10.3",
"stylelint-config-clean-order": "^5.2.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0"
}
}