-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.06 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
{
"name": "cas-fee-projekt-1-starter-template",
"version": "1.0.0",
"description": "Testat template",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"stylelint": "stylelint \"**/*.css\"",
"w3c": "html-validator --file ./source/public/index.html --verbose --ignore='Error: Bad value “dialog” for attribute “method” on element “form”.'",
"eslint": "eslint \"**/*.js\"",
"all": "npm run stylelint && npm run w3c && npm run eslint && node -e \"console.log('npm run all completed')\""
},
"author": "Michael Gfeller",
"license": "ISC",
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"html-validator-cli": "^7.0.1",
"node-sass": "^7.0.1",
"prettier": "2.6.2",
"stylelint": "^14.7.1",
"stylelint-config-standard": "^25.0.0"
},
"dependencies": {
"express": "^4.18.0",
"@seald-io/nedb": "^2.0.4"
}
}