-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 940 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
{
"name": "cas-fee-projekt-1",
"version": "1.0.0",
"description": "Testat template",
"main": "public/scripts/main.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"stylelint": "stylelint \\\"src/**/*.css\\\"",
"w3c": "html-validator --file src/public/index.html --verbose",
"eslint": "eslint src/**/*.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",
"nedb-promise": "^2.0.1"
}
}