-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1019 Bytes
/
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
{
"name": "admin-dashboard",
"version": "1.0.0",
"license": "MIT",
"author": "smarqueslopez",
"description": "Responsive Admin Dashboard",
"keywords": [
"responsive",
"dashboard"
],
"homepage": "https://github.com/smarqueslopez/admin-dashboard#readme",
"main": "index.html",
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"npm-run-all": "^4.1.5",
"babel-eslint": "^10.1.0",
"prettier": "^2.2.1"
},
"dependencies": {
"node-sass": "^5.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"scss": "node-sass -w styles/scss -o styles --output-style compressed",
"start": "npm-run-all lint scss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smarqueslopez/admin-dashboard.git"
},
"bugs": {
"url": "https://github.com/smarqueslopez/admin-dashboard/issues"
}
}