-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"name": "fe_template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx parcel ./src/index.html --open",
"build": "rm -rf ./dist && 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\"",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build",
"deploy": "bash ./deploy.sh"
},
"keywords": [],
"author": "",
"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.1",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"node-sass": "^4.14.1",
"parcel": "^1.12.4",
"sass": "^1.26.10",
"stylelint": "^13.6.1"
}
}