-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "website-personal",
"version": "1.0.0",
"description": "App to generate static files to serve at http://bradleyoesch.com",
"type": "module",
"main": "src/js/app.js",
"scripts": {
"clean": "rm -rf build/",
"clean-all": "rm -rf node_modules/ && clean",
"lint": "eslint src/js & eslint --fix src/js",
"lint-all": "npm run lint & npm run lint-styles",
"lint-styles": "stylelint \"src/scss/**/*.scss\" & stylelint --fix \"src/scss/**/*.scss\"",
"start": "BASE_PATH=`pwd` node src/js/app.js --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"lint",
"lint-styles"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bradleyoesch/website-personal.git"
},
"author": "Bradley Oesch",
"license": "ISC",
"bugs": {
"url": "https://github.com/bradleyoesch/website-personal/issues"
},
"homepage": "https://github.com/bradleyoesch/website-personal#readme",
"devDependencies": {
"eslint": "^7.21.0",
"sass": "^1.32.8"
},
"dependencies": {
"mustache": "^4.1.0",
"pre-commit": "^1.2.2",
"save": "^2.4.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^20.0.0"
}
}