-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 994 Bytes
/
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": "public/scripts/main.js",
"type": "module",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"stylelint": "stylelint \"**/*.css\"",
"w3c": "html-validator --file ./public/index.html --verbose",
"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": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"html-validator-cli": "^7.0.1",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"handlebars": "^4.7.7",
"method-override": "^3.0.0",
"nedb": "^1.8.0"
}
}