-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.21 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
33
34
{
"name": "noting-matters",
"version": "1.0.0",
"description": "A groundbreaking and innovative note application.",
"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 ./public/html/note-detail.html --verbose && html-validator --file ./public/html/index.html --verbose && html-validator --file ./public/html/error/404.html --verbose && html-validator --file ./public/html/error/500.html --verbose",
"eslint": "eslint ./**/*.js",
"all": "npm run stylelint && npm run w3c && npm run eslint && node -e \"console.log('npm run all completed')\""
},
"author": "Manuel Fischer",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.1.0",
"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",
"cheerio": "*",
"express": "^4.17.1",
"moment": "^2.29.1",
"nedb-promise": "^2.0.1",
"path": "^0.12.7"
}
}