-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.16 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
{
"private": true,
"staticFiles": {
"staticPath": "src/static"
},
"scripts": {
"dev": "parcel serve src/index.html src/404.html",
"build": "parcel build src/index.html src/404.html",
"format": "prettier --write .",
"test": "npm run lint",
"lint": "npm-run-all lint:*",
"lint:style": "prettier --check .",
"lint:js": "eslint --report-unused-disable-directives --ext .js --ext .json .",
"lint:css": "stylelint --report-needless-disables --allow-empty-input 'src/**/*.css'"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.4",
"@parcel/transformer-image": "2.2.1",
"parcel": "2.2.1",
"parcel-reporter-static-files-copy": "1.3.4",
"posthtml-expressions": "1.9.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"dotenv": "14.2.0",
"eslint": "8.7.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-json": "3.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"stylelint": "15.10.1",
"stylelint-config-standard": "33.0.0"
}
}