-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.19 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
35
36
37
38
39
{
"name": "cas-fee-projekt-1-starter-template",
"version": "1.0.0",
"description": "Note App",
"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",
"eslint": "eslint \"**/*.js\"",
"all": "npm run stylelint && npm run w3c && npm run eslint && node -e \"console.log('npm run all completed')\""
},
"author": "Almir Hodzic",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"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": "^2.0.0",
"prettier": "2.6.2",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^25.0.0"
},
"dependencies": {
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.0",
"express-jwt": "^8.4.1",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"nedb": "^1.8.0",
"nedb-promises": "^6.1.0"
}
}