-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "git pull && npm install && npm run build:sass",
"postinstall": "npm run build:sass",
"build": "npm run build:sass",
"start": "node ./index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch:express": "nodemon ./index.js",
"build:sass": "sass src/sass:public/css --style compressed",
"watch:sass": "sass --watch src/sass:public/css",
"watch:browser": "browser-sync start --config bs-config.js",
"watch": "npm-run-all --parallel build::sass watch:express watch:sass watch:browser",
"lint": "eslint index.js public/scripts/*",
"lint:fix": "eslint index.js public/scripts/* --fix"
},
"pre-commit": [
"lint"
],
"author": "",
"license": "UNLICENSED",
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"js-yaml": "^4.0.0",
"sass": "^1.35.1"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"eslint": "^7.18.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2"
}
}