-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.24 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
{
"name": "finance-dashboard",
"version": "1.0.0",
"description": "## Link",
"main": "script.js",
"scripts": {
"start": "browser-sync start --server --no-ui --files --watch \"js/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx stylelint \"**/*.css\" --ignore-path .stylelintignore",
"lint:fix": "npx stylelint \"**/*.css\" --ignore-path .stylelintignore --fix",
"lint:js": "eslint --ext \".js\" --ignore-path .gitignore ./script --max-warnings=0",
"lint:js:fix": "eslint --ext \".js\" --ignore-path .gitignore ./script --max-warnings=0 --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melodoc/finance-dashboard.git"
},
"author": "melodoc",
"license": "ISC",
"bugs": {
"url": "https://github.com/melodoc/finance-dashboard/issues"
},
"homepage": "https://github.com/melodoc/finance-dashboard#readme",
"dependencies": {
"browser-sync": "^2.27.10",
"postcss-discard-duplicates": "^5.1.0"
},
"devDependencies": {
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.27.5",
"postcss": "^8.4.14",
"postcss-cli": "^10.0.0",
"stylelint": "^14.9.1",
"stylelint-config-standard": "^26.0.0",
"stylelint-order": "^5.0.0"
}
}