-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
42
43
44
45
{
"name": "fe_template",
"version": "1.0.0",
"description": "Boilerplate for FE projects",
"main": "./src/index.html",
"scripts": {
"start": "parcel ./src/index.html --open",
"build": "rm -rf ./dist && npx parcel build ./src/index.html --public-url ./",
"lint:js": "eslint ./src",
"lint:css": "stylelint ./src",
"lint:html": "linthtml ./src",
"lint": "concurrently \"npm run lint:js\" \"npm run lint:css\" \"npm run lint:html\"",
"predeploy": "npm run build",
"deploy": "bash deploy.sh",
"test": "jest ./src"
},
"keywords": [
"boilerplate",
"template",
"frontend"
],
"author": "germandolia",
"license": "ISC",
"devDependencies": {
"@linthtml/linthtml": "^0.4.1",
"@mate-academy/eslint-config": "0.0.12",
"@mate-academy/linthtml-config": "0.0.1",
"@mate-academy/stylelint-config": "0.0.9",
"concurrently": "^5.2.0",
"eslint": "^7.3.0",
"eslint-plugin-jest": "^23.17.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"node-sass": "^4.14.1",
"parcel": "^1.12.4",
"stylelint": "^13.6.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}